Mercurial > audlegacy
diff Plugins/General/scrobbler/fmt.h @ 688:cc1969408403 trunk
[svn] - add scrobbler support
author | nenolod |
---|---|
date | Sat, 25 Feb 2006 12:11:20 -0800 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/General/scrobbler/fmt.h Sat Feb 25 12:11:20 2006 -0800 @@ -0,0 +1,15 @@ +#ifndef FMT_H +#define FMT_H 1 +#define pdebug(s, b) if(b) { fmt_debug(__FILE__, __FUNCTION__, (s)); } + +#include <time.h> + +char *fmt_escape(char *); +char *fmt_unescape(char *); +char *fmt_timestr(time_t, int); +char *fmt_vastr(char *, ...); +void fmt_debug(char *, const char *, char *); +char *fmt_string_pack(char *, char *, ...); +int fmt_strcasecmp(const char *s1, const char *s2); +int fmt_strncasecmp(const char *s1, const char *s2, size_t n); +#endif