Lines Matching refs:retptr
65 register char *retptr = rmbuffer; in rmpadding() local
121 *retptr++ = '$'; in rmpadding()
122 *retptr++ = '<'; in rmpadding()
134 *retptr++ = ch; in rmpadding()
138 *retptr++ = ch; in rmpadding()
140 *retptr = '\0'; in rmpadding()
169 register char *retptr = retbuffer; in cconvert() local
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()
208 *retptr = '\0'; in cconvert()
226 char *retptr; in cexpand() local
228 retptr = rmpadding(str, padbuffer, (int *)0); in cexpand()
229 (void) sprintf(ret2buffer, "%s%s", padbuffer, cconvert(retptr)); in cexpand()