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

16 行
366 B

  1. /* time.h -- time declarations
  2. *
  3. * Copyright (C) 2004 Svend Sorensen
  4. * For license terms, see the file COPYING in this distribution.
  5. */
  6. #ifndef TIME_H
  7. #define TIME_H
  8. long time_msf_to_frame (int m, int s, int f);
  9. long time_mmssff_to_frame (char *mmssff);
  10. void time_frame_to_msf (long frame, int *m, int *s, int *f);
  11. char *time_frame_to_mmssff (long f);
  12. #endif