dep: Add libcue

This commit is contained in:
Connor McLaughlin
2019-10-18 18:16:52 +10:00
parent c8bbd25f59
commit 52c16deba6
22 changed files with 7358 additions and 0 deletions

View File

@ -0,0 +1,15 @@
/*
* 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
long time_msf_to_frame(int m, int s, int f);
void time_frame_to_msf(long frame, int *m, int *s, int *f);
char *time_frame_to_mmssff(long f);
#endif