/usr/include/libcue-1.4/libcue/time.h is in libcue-dev 1.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /*
* time.h -- time declarations
*
* Copyright (C) 2004, 2005, 2006, 2007 Svend Sorensen
* For license terms, see the file COPYING in this distribution.
*/
#ifndef TIME_H
#define TIME_H
void msf_frame_to_msf(long frame, int *m, int *s, int *f);
long time_msf_to_frame(int m, int s, int f);
long time_mmssff_to_frame(char *mmssff);
void time_frame_to_msf(long frame, int *m, int *s, int *f);
char *time_frame_to_mmssff(long f);
#endif
|