str_split.h 178 B

123456
  1. #ifndef __STR_SPLIT__
  2. #define __STR_SPLIT__
  3. size_t split_count(const char* a_str, const char a_delim);
  4. char** str_split(char* a_str, const char a_delim);
  5. #endif // __STR_SPLIT__