Searched defs:splitstr (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dstring.c287 * Split str into a NULL-terminated array of strings, using splitstr as
289 * It's the same as the Python call string.split(str, splitstr).
292 char **crStrSplit( const char *str, const char *splitstr )
295 int num_args = __numOccurrences( str, splitstr ) + 1;
302 end = crStrstr( temp, splitstr );
306 temp = end + crStrlen(splitstr);
312 char **crStrSplitn( const char *str, const char *splitstr, int n ) argument
317 int num_args = __numOccurrences( str, splitstr );
327 end = crStrstr( temp, splitstr );
331 temp = end + crStrlen(splitstr);
[all...]

Completed in 32 milliseconds