From 31b71b67011fa52f091df6fe536a11d6d0bfb256 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 25 Jul 2016 18:25:28 +0200 Subject: Imported Upstream version 2.0.2 --- StringUtils.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'StringUtils.h') diff --git a/StringUtils.h b/StringUtils.h index 38ffae7..9762034 100644 --- a/StringUtils.h +++ b/StringUtils.h @@ -9,6 +9,8 @@ Released under the GNU GPL, see the COPYING file in the source distribution for its full text. */ +#include + #define String_startsWith(s, match) (strstr((s), (match)) == (s)) #define String_contains_i(s1, s2) (strcasestr(s1, s2) != NULL) @@ -24,4 +26,6 @@ void String_freeArray(char** s); char* String_getToken(const char* line, const unsigned short int numMatch); +char* String_readLine(FILE* fd); + #endif -- cgit v1.2.3