Home
last modified time | relevance | path

Searched refs:combuf (Results 1 – 3 of 3) sorted by relevance

/freebsd/usr.bin/indent/
H A Dindent_globs.h69 blank_pos = last_bl - combuf; \
72 combuf = (char *) realloc(combuf, nsize); \
73 if (combuf == NULL) \
75 e_com = combuf + com_len + 1; \
77 last_bl = combuf + blank_pos; \
78 l_com = combuf + nsize - 5; \
79 s_com = combuf + 1; \
114 extern char *combuf; /* buffer for comments */
H A Dindent.c57 char *combuf, *s_com, *e_com, *l_com; variable
125 combuf = (char *) malloc(bufsize); in main()
126 if (combuf == NULL) in main()
139 l_com = combuf + bufsize - 5; in main()
143 combuf[0] = codebuf[0] = labbuf[0] = ' '; /* set up code, label, and in main()
145 combuf[1] = codebuf[1] = labbuf[1] = '\0'; in main()
149 s_com = e_com = combuf + 1; in main()
H A Dio.c215 *(e_com = s_com = combuf + 1) = '\0'; in dump_line()