Searched defs:newline_char (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/make/include/mksh/
H A Ddefs.h89 newline_char = '\n', enumerator in enum:__anon23
/illumos-gate/usr/src/lib/libtecla/common/
H A Dgetline.c1127 static int gl_line_ended(GetLine *gl, int newline_char);
10258 * newline_char int The newline character to add to the end
10264 static int gl_line_ended(GetLine *gl, int newline_char) argument
10270 if(isprint((int)(unsigned char) newline_char)) {
10271 if(gl_end_of_line(gl, 1, NULL) || gl_add_char_to_line(gl, newline_char))
10277 newline_char = '\n';
10278 gl_buffer_char(gl, newline_char, gl->ntotal);
10284 if(gl->echo && gl->automatic_history && newline_char=='\n')

Completed in 90 milliseconds