您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

17 行
358 B

  1. /*
  2. * cuefile.h -- cue/toc public declarations
  3. *
  4. * Copyright (C) 2004 Svend Sorensen
  5. * For license terms, see the file COPYING in this distribution.
  6. */
  7. #include "cd.h"
  8. enum {CUE, TOC, UNKNOWN};
  9. typedef struct Cue Cue;
  10. Cd *cf_parse (char *fname, int *format);
  11. int cf_print (char *fname, int *format, Cd *cue);
  12. int cf_format_from_suffix (char *fname);