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.
 
 
 
 
 
 

17 satır
389 B

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