Lines Matching refs:sprintf
150 (void) sprintf(padbuffer, "%d.%d", paddigits, paddecimal);
152 (void) sprintf(padbuffer, "%d", paddigits);
154 (void) sprintf(padbuffer, ".%d", paddecimal);
181 /* we ignore the return value from sprintf because BSD/V7 */
184 (void) sprintf(retptr, "\\%.3o", c); retptr += 4; }
186 (void) sprintf(retptr, "\\E"); retptr += 2; }
188 (void) sprintf(retptr, "\\t"); retptr += 2; }
190 (void) sprintf(retptr, "\\b"); retptr += 2; }
192 (void) sprintf(retptr, "\\f"); retptr += 2; }
194 (void) sprintf(retptr, "\\n"); retptr += 2; }
196 (void) sprintf(retptr, "\\r"); retptr += 2; }
200 (void) sprintf(retptr, "\\072"); retptr += 4; }
202 (void) sprintf(retptr, "\\^"); retptr += 2; }
204 (void) sprintf(retptr, BACKBACK); retptr += 2; }
206 (void) sprintf(retptr, "^%c", c ^ 0100); retptr += 2; }
208 (void) sprintf(retptr, "%c", c); retptr++; }
231 (void) sprintf(ret2buffer, "%s%s", padbuffer, cconvert(retptr));