Lines Matching refs:format
12 snprintf( char *buffer, int len, const char *format,...)
13 plp_unsafe_snprintf( char *buffer, int len, const char *format,...)
220 snprintf(const char *format, size_t size, va_list ap);
222 plp_unsafe_snprintf(const char *format, size_t size, va_list ap);
227 vsnprintf(char *str, size_t size, const char *format, va_list ap);
229 unsafe_vsnprintf(char *str, size_t size, const char *format, va_list ap);
237 a format as described below. Snprintf(), and vsnprintf()
239 output under the control of a format string that specifies
253 By default, the snprintf function will not format control
262 the "%c" (character) format. It brutally assumes that the
266 The format string is composed of zero or more directives:
448 only for backward compatibility. The effect of padding the %p format
541 const char *format, va_list args );
658 static void dopr( int visible_control, char **buffer, int *left, const char *format, va_list args )
675 while( (ch = *format++) ){
682 ch = *format++;
685 dostr( buffer, left, "**end of format**" );
1002 /* format string will be at most 10 chars long ... */
1005 /* fprintf(stderr,"format string '%s'\n", formatstr); */