mirror of
https://github.com/hmaxnl/netex.git
synced 2025-04-18 19:28:12 +02:00
16 lines
340 B
C
Executable File
16 lines
340 B
C
Executable File
#ifndef STRUTIL_H
|
|
#define STRUTIL_H
|
|
|
|
typedef struct str_split
|
|
{
|
|
char** delimited;
|
|
int count;
|
|
} SPLIT_STR;
|
|
|
|
SPLIT_STR* splstr(const char* str, const char delimiter);
|
|
void strsplfree(SPLIT_STR* str);
|
|
size_t strocc(const char* str, const char character);
|
|
int str_token_count(const char* str, const char delimiter);
|
|
|
|
#endif //STRUTIL_H
|