snprintf.h File Reference

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)


Function Documentation

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 
)


Generated on Sun Mar 4 16:04:19 2007 for Scilab [trunk] by  doxygen 1.5.1