Searched refs:sl_max (Results 1 – 2 of 2) sorted by relevance
51 sl->sl_max = _SL_CHUNKSIZE; in sl_init()52 sl->sl_str = malloc(sl->sl_max * sizeof (char *)); in sl_init()63 if (sl->sl_cur == sl->sl_max - 1) { in sl_add()64 sl->sl_max += _SL_CHUNKSIZE; in sl_add()65 sl->sl_str = realloc(sl->sl_str, sl->sl_max * sizeof (char *)); in sl_add()
43 size_t sl_max; member