Searched refs:g_string (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/oamuser/user/
H A Dgroups.c63 char *g_string, *new_g_string, *gstr_off; local
102 if ((g_string = malloc(bufsize)) == NULL) {
113 * g_string always points to the beginning of the buffer (even after
115 * gstr_off = g_string + MYBUFSIZE * (n), where n >= 0.
119 gstr_off = g_string;
122 if (g_string[g_length - 1] == '\n' || feof(e_fptr))
124 new_g_string = realloc(g_string, (bufsize + MYBUFSIZE));
126 free(g_string);
133 g_string = new_g_string;
134 gstr_off = g_string
[all...]

Completed in 55 milliseconds