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 
8 #ifndef TIME_H
9 #define TIME_H
10 
11 long time_msf_to_frame(int m, int s, int f);
12 long time_mmssff_to_frame(char *mmssff);
13 void time_frame_to_msf(long frame, int *m, int *s, int *f);
14 char *time_frame_to_mmssff(long f);
15 
16 #endif
17