Searched refs:text_buffer (Results 1 – 3 of 3) sorted by relevance
/dflybsd-src/bin/mined/ |
H A D | mined2.c | 636 char *bufp = text_buffer; /* Buffer for building line */ in insert() 662 line->text = alloc(length_of(text_buffer) + 1); in insert() 663 copy_string(line->text, text_buffer); in insert() 701 char *bufp = text_buffer; /* Storage for new line->text */ in delete() 741 start_line->text = alloc(length_of(text_buffer) + 1); in delete() 742 copy_string(start_line->text, text_buffer); in delete() 912 while ((cnt = read(yank_fd, text_buffer, sizeof(text_buffer))) > 0) in WB() 913 if (write(new_fd, text_buffer, cnt) != cnt) { in WB() 1327 char *textp = text_buffer; in substitute() 1342 while (*subp != '\0' && textp < &text_buffer[MAX_CHARS]) { in substitute() [all …]
|
H A D | mined1.c | 1107 build_string(text_buffer, "Command aborted: %s (File incomplete)", in bad_write() 1110 error(text_buffer, NIL_PTR); in bad_write() 1195 build_string(text_buffer, "%s\nError code %d\n", message, errno); in panic() 1197 build_string(text_buffer, "%s%s\nError code %d\n", enter_string, message, errno); in panic() 1199 write(STD_OUT, text_buffer, length_of(text_buffer)); in panic() 1280 char text_buffer[MAX_CHARS]; /* Buffer for modifying text */ variable 1387 while ((len = get_line(fd, text_buffer)) != ERRORS) { in load_file() 1388 line = line_insert(line, text_buffer, len); in load_file()
|
H A D | mined.h | 200 extern char text_buffer[MAX_CHARS]; /* Buffer for modifying text */
|