Merged autotools to main trunk.

This commit is contained in:
Svend Sorensen
2005-03-22 04:26:57 +00:00
parent d0bf3de212
commit 51fe2af924
42 changed files with 3001 additions and 129 deletions

16
src/lib/cuefile.h Normal file
View File

@@ -0,0 +1,16 @@
/*
* cuefile.h -- cue/toc public declarations
*
* Copyright (C) 2004 Svend Sorensen
* For license terms, see the file COPYING in this distribution.
*/
#include "cd.h"
enum {CUE, TOC, UNKNOWN};
typedef struct Cue Cue;
Cd *cf_parse (char *fname, int *format);
int cf_print (char *fname, int *format, Cd *cue);
int cf_format_from_suffix (char *fname);