[C]Split함수 구현
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253char **split( char *str, const char delim, int *count ){ if( str == NULL ) { return NULL; } char **result = NULL; char *tmp = str; char *end = str + strlen(str); char prev = '\0'; int nCount = 0; if( str[0] == delim ) { ++str; } if( *(end-1) == delim ) { *(end-1) = '\0'; } while ( *tmp != NULL ) { if..