Removed unused String_getToken function

Since String_getToken is not used anymore and currently only supports
a 50 char token, simply remove it for now.
This commit is contained in:
Tobias Stoeckmann
2022-01-11 21:34:47 +01:00
committed by BenBE
parent fde1243443
commit a133ffd829
2 changed files with 0 additions and 31 deletions

View File

@ -54,8 +54,6 @@ char** String_split(const char* s, char sep, size_t* n);
void String_freeArray(char** s);
char* String_getToken(const char* line, unsigned short int numMatch) ATTR_MALLOC;
char* String_readLine(FILE* fd) ATTR_MALLOC;
/* Always null-terminates dest. Caller must pass a strictly positive size. */