Lines Matching refs:sprintf
75 /* we ignore the return value from sprintf because BSD/V7 */
78 (void) sprintf(retptr, "\\%.3o", c); retptr += 4; }
80 (void) sprintf(retptr, "\\E"); retptr += 2; }
82 (void) sprintf(retptr, "\\t"); retptr += 2; }
84 (void) sprintf(retptr, "\\b"); retptr += 2; }
86 (void) sprintf(retptr, "\\f"); retptr += 2; }
88 (void) sprintf(retptr, "\\n"); retptr += 2; }
90 (void) sprintf(retptr, "\\r"); retptr += 2; }
92 (void) sprintf(retptr, "\\,"); retptr += 2; }
94 (void) sprintf(retptr, "\\^"); retptr += 2; }
96 (void) sprintf(retptr, BACKBACK); retptr += 2; }
98 (void) sprintf(retptr, "\\s"); retptr += 2; }
100 (void) sprintf(retptr, "^%c", c ^ 0100); retptr += 2; }
102 (void) sprintf(retptr, "%c", c); retptr++; }