Go to the source code of this file.
Functions | |
| int | snprintf (char *str, size_t count, const char *fmt,...) |
| int | vsnprintf (char *str, size_t count, const char *fmt, va_list arg) |
| int snprintf | ( | char * | str, | |
| size_t | count, | |||
| const char * | fmt, | |||
| ... | ||||
| ) |
Definition at line 175 of file snprintf.c.
References vsnprintf().
00176 { 00177 int cc; 00178 va_list ap; 00179 00180 va_start(ap, fmt); 00181 cc = vsnprintf(str, size, fmt, ap); 00182 va_end(ap); 00183 return cc; 00184 }
Here is the call graph for this function:

| int vsnprintf | ( | char * | str, | |
| size_t | count, | |||
| const char * | fmt, | |||
| va_list | arg | |||
| ) |
1.5.1