Home | History | Annotate | Download | only in tui

Lines Matching defs:lineptr

73   const char *lineptr = *ptr;
84 c = *lineptr;
85 if (c == '\033' && skip_ansi_escape (lineptr, &skip_bytes))
88 result.append (lineptr, lineptr + skip_bytes);
89 lineptr += skip_bytes;
95 ++lineptr;
132 if (c == '\r' && *lineptr == '\n')
133 ++lineptr;
134 *ptr = lineptr;