Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

17 строки
383 B

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