Home
last modified time | relevance | path

Searched refs:labbuf (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.bin/indent/
H A Dindent_globs.h85 labbuf = (char *) realloc(labbuf, nsize); \
86 if (labbuf == NULL) \
88 e_lab = labbuf + label_len + 1; \
89 l_lab = labbuf + nsize - 5; \
90 s_lab = labbuf + 1; \
104 extern char *labbuf; /* buffer for label */
H A Dindent.c55 char *labbuf, *s_lab, *e_lab, *l_lab; variable
128 labbuf = (char *) malloc(bufsize); in main()
129 if (labbuf == NULL) in main()
140 l_lab = labbuf + 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()
147 s_lab = e_lab = labbuf + 1; in main()