#ifndef __STR_SPLIT__ #define __STR_SPLIT__ size_t split_count(const char* a_str, const char a_delim); char** str_split(char* a_str, const char a_delim); #endif // __STR_SPLIT__