1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/* Copyright (C) 2008 Vincent Penquerc'h.
This file is part of the Kate codec library.
Written by Vincent Penquerc'h.
Use, distribution and reproduction of this library is governed
by a BSD style source license included with this source in the
file 'COPYING'. Please read these terms before distributing. */
#ifndef KATE_kutil_h_GUARD
#define KATE_kutil_h_GUARD
extern int time_hours(kate_float t);
extern int time_minutes(kate_float t);
extern kate_float time_float_seconds(kate_float t);
extern int time_seconds(kate_float t);
extern int time_milliseconds(kate_float t);
extern void granule_to_hmsms(const kate_info *ki,ogg_int64_t granpos,int *h,int *m,int *s,int *ms);
extern const char *eat_arg(int argc,char **argv,int *n);
#endif
|