25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

16 satır
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