Searched defs:pad (Results 1 - 1 of 1) sorted by relevance

/ndk/sources/android/support/src/stdio/
H A Dvfprintf.c196 static void pad(FILE *f, char c, int w, int l, int fl) function
198 char pad[256]; local
201 memset(pad, c, l>sizeof pad ? sizeof pad : l);
202 for (; l >= sizeof pad; l -= sizeof pad)
203 out(f, pad, sizeof pad);
204 out(f, pad,
[all...]

Completed in 33 milliseconds