Mercurial > audlegacy-plugins
annotate src/wma/libffwma/cutils.h @ 2184:f2590691d4b7
- Fix locking issues causing spurious error messages (and possibly deadlocks)
author | Ralf Ertzinger <ralf@skytale.net> |
---|---|
date | Thu, 22 Nov 2007 15:52:42 +0100 |
parents | aa044d71838f |
children |
rev | line source |
---|---|
878 | 1 #ifndef _CUTILS_H |
2 #define _CUTILS_H | |
3 | |
4 int strstart(const char *str, const char *val, const char **ptr); | |
5 int stristart(const char *str, const char *val, const char **ptr); | |
6 void pstrcpy(char *buf, int buf_size, const char *str); | |
7 char *pstrcat(char *buf, int buf_size, const char *s); | |
8 | |
9 time_t mktimegm(struct tm *tm); | |
10 const char *small_strptime(const char *p, const char *fmt, | |
11 struct tm *dt); | |
12 | |
13 #endif | |
14 |