1a8d19ba99ffeeb9f147ed8d81aca89b5dba5504
[ircu2.10.12-pk.git] / include / sprintf_irc.h
1 #ifndef SPRINTF_IRC
2 #define SPRINTF_IRC
3
4 #include <stdarg.h>
5
6 /*=============================================================================
7  * Proto types
8  */
9
10 extern char *vsprintf_irc(register char *str, register const char *format,
11     register va_list);
12 extern char *sprintf_irc(register char *str, register const char *format, ...)
13     __attribute__ ((format(printf, 2, 3)));
14
15 extern const char atoi_tab[4000];
16
17 #endif /* SPRINTF_IRC */