summaryrefslogtreecommitdiffstats
path: root/String.h
diff options
context:
space:
mode:
Diffstat (limited to 'String.h')
-rw-r--r--String.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/String.h b/String.h
index 8f0b50b5..71e92faa 100644
--- a/String.h
+++ b/String.h
@@ -19,9 +19,9 @@ in the source distribution for its full text.
#define String_startsWith(s, match) (strstr((s), (match)) == (s))
-inline void String_delete(char* s);
+extern void String_delete(char* s);
-inline char* String_copy(char* orig);
+extern char* String_copy(char* orig);
char* String_cat(char* s1, char* s2);
@@ -39,7 +39,7 @@ void String_printInt(int i);
void String_printPointer(void* p);
-inline int String_eq(const char* s1, const char* s2);
+extern int String_eq(const char* s1, const char* s2);
char** String_split(char* s, char sep);