1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 16:54:46 +02:00
Files
unrealircd/include/ircsprintf.h
T
2000-05-28 08:45:31 +00:00

22 lines
312 B
C

/*
* sprintf_irc.h
*
* $Id$
*/
#ifndef IRCSPRINTF_H
#define IRCSPRINTF_H
#include <stdarg.h>
#include <stdio.h>
/*
* Proto types
*/
extern char *ircvsprintf(char *str, const char *format, va_list);
extern char *ircsprintf(char *str, const char *format, ...);
extern const char atoi_tab[4000];
#endif