Lines Matching refs:sprintf
148 (void) sprintf(padbuffer, "%d.%d", paddigits, paddecimal); in rmpadding()
150 (void) sprintf(padbuffer, "%d", paddigits); in rmpadding()
152 (void) sprintf(padbuffer, ".%d", paddecimal); in rmpadding()
182 (void) sprintf(retptr, "\\%.3o", c); retptr += 4; } in cconvert()
184 (void) sprintf(retptr, "\\E"); retptr += 2; } in cconvert()
186 (void) sprintf(retptr, "\\t"); retptr += 2; } in cconvert()
188 (void) sprintf(retptr, "\\b"); retptr += 2; } in cconvert()
190 (void) sprintf(retptr, "\\f"); retptr += 2; } in cconvert()
192 (void) sprintf(retptr, "\\n"); retptr += 2; } in cconvert()
194 (void) sprintf(retptr, "\\r"); retptr += 2; } in cconvert()
198 (void) sprintf(retptr, "\\072"); retptr += 4; } in cconvert()
200 (void) sprintf(retptr, "\\^"); retptr += 2; } in cconvert()
202 (void) sprintf(retptr, BACKBACK); retptr += 2; } in cconvert()
204 (void) sprintf(retptr, "^%c", c ^ 0100); retptr += 2; } in cconvert()
206 (void) sprintf(retptr, "%c", c); retptr++; } in cconvert()
229 (void) sprintf(ret2buffer, "%s%s", padbuffer, cconvert(retptr)); in cexpand()