Lines Matching refs:strings
28 /* Allow strdup'ing of NULL strings -- this makes the __fillin functions
287 * Split str into a NULL-terminated array of strings, using splitstr as
337 /* Free an array of strings, as returned by crStrSplit() and crStrSplitn(). */
338 void crFreeStrings( char **strings )
341 for (i = 0; strings[i]; i++) {
342 crFree(strings[i]);
344 crFree(strings);
348 /* Intersect two strings on a word-by-word basis (separated by spaces).
349 * We typically use this to intersect OpenGL extension strings.
363 /* null strings, no intersection */
397 /* free split strings */