comparison src/General/scrobbler/fmt.h @ 0:13389e613d67 trunk

[svn] - initial import of audacious-plugins tree (lots to do)
author nenolod
date Mon, 18 Sep 2006 01:11:49 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13389e613d67
1 #ifndef FMT_H
2 #define FMT_H 1
3 #define pdebug(s, b) if(b) { fmt_debug(__FILE__, __FUNCTION__, (s)); }
4
5 #include <time.h>
6
7 char *fmt_escape(char *);
8 char *fmt_unescape(char *);
9 char *fmt_timestr(time_t, int);
10 char *fmt_vastr(char *, ...);
11 void fmt_debug(char *, const char *, char *);
12 char *fmt_string_pack(char *, char *, ...);
13 int fmt_strcasecmp(const char *s1, const char *s2);
14 int fmt_strncasecmp(const char *s1, const char *s2, size_t n);
15 #endif