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

/illumos-gate/usr/src/cmd/man/
H A Dstringlist.h43 size_t sl_max; member in struct:_stringlist
H A Dstringlist.c51 sl->sl_max = _SL_CHUNKSIZE;
52 sl->sl_str = malloc(sl->sl_max * sizeof (char *));
63 if (sl->sl_cur == sl->sl_max - 1) {
64 sl->sl_max += _SL_CHUNKSIZE;
65 sl->sl_str = realloc(sl->sl_str, sl->sl_max * sizeof (char *));

Completed in 226 milliseconds