Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

17 řádky
377 B

  1. /*
  2. * time.h -- time declarations
  3. *
  4. * Copyright (C) 2004, 2005, 2006 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