Google

Main Page   Class Hierarchy   Compound List   File List   Compound Members  

snprintf.h

00001 #ifndef _CRYSTAL_SNPRINTF_H_
00002 #define _CRYSTAL_SNPRINTF_H_
00003 
00004 #include <stdarg.h>
00005 
00006 #if defined(__cplusplus)
00007 //extern "C" {
00008 #endif
00009 
00010 extern int cs_snprintf(char *, size_t, const char *, /*args*/ ...)
00011     CS_GNUC_PRINTF (3, 4);
00012 extern int cs_vsnprintf(char *, size_t, const char *, va_list)
00013     CS_GNUC_PRINTF (3, 0);
00014 
00015 #if defined(__cplusplus)
00016 //}
00017 #endif
00018 
00019 #endif

Generated for Crystal Space by doxygen 1.2.5 written by Dimitri van Heesch, ©1997-2000