~ubuntu-branches/ubuntu/utopic/cdtool/utopic

« back to all changes in this revision

Viewing changes to database.h

  • Committer: Bazaar Package Importer
  • Author(s): Gergely Nagy
  • Date: 2002-01-22 14:08:28 UTC
  • Revision ID: james.westby@ubuntu.com-20020122140828-l9ztstm6m6anm34c
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* database.h */
 
2
 
 
3
typedef struct {
 
4
    char track_names[100][100];
 
5
    char cdname[100];
 
6
    char artist[100];
 
7
} cd_t;
 
8
 
 
9
cd_t *read_db(char *tracks_buffer, char usedb);