Home
last modified time | relevance | path

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

/freebsd-12-stable/usr.bin/indent/
Dindent_globs.h72 blank_pos = last_bl - combuf; \
75 combuf = (char *) realloc(combuf, nsize); \
76 if (combuf == NULL) \
78 e_com = combuf + com_len + 1; \
80 last_bl = combuf + blank_pos; \
81 l_com = combuf + nsize - 5; \
82 s_com = combuf + 1; \
117 extern char *combuf; /* buffer for comments */
Dindent.c66 char *combuf, *s_com, *e_com, *l_com; variable
134 combuf = (char *) malloc(bufsize); in main()
135 if (combuf == NULL) in main()
148 l_com = combuf + bufsize - 5; in main()
152 combuf[0] = codebuf[0] = labbuf[0] = ' '; /* set up code, label, and in main()
154 combuf[1] = codebuf[1] = labbuf[1] = '\0'; in main()
158 s_com = e_com = combuf + 1; in main()
Dio.c223 *(e_com = s_com = combuf + 1) = '\0'; in dump_line()