Searched refs:sl_max (Results 1 – 2 of 2) sorted by relevance
59 sl->sl_max = _SL_CHUNKSIZE; in sl_init()60 sl->sl_str = malloc(sl->sl_max * sizeof(char *)); in sl_init()73 if (sl->sl_cur == sl->sl_max - 1) { in sl_add()74 sl->sl_max += _SL_CHUNKSIZE; in sl_add()75 sl->sl_str = reallocf(sl->sl_str, sl->sl_max * sizeof(char *)); in sl_add()
41 size_t sl_max; member