]>
Dogcows Code - chaz/openbox/blob - src/bsd-snprintf.h
1 #ifndef _BSD_SNPRINTF_H
2 #define _BSD_SNPRINTF_H
6 #include <sys/types.h> /* For size_t */
9 int snprintf(char *str
, size_t count
, const char *fmt
, ...);
10 #endif /* !HAVE_SNPRINTF */
12 #ifndef HAVE_VSNPRINTF
13 int vsnprintf(char *str
, size_t count
, const char *fmt
, va_list args
);
14 #endif /* !HAVE_SNPRINTF */
17 #endif /* _BSD_SNPRINTF_H */
This page took 0.037129 seconds and 4 git commands to generate.