commit e0057f47e97e77a735a5f7c67a8feea426fdcedc
parent f43c863610b5fde251571316519b7baab0e6ad54
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Sun, 8 Jan 2012 01:47:08 +0100
something for the eye
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ansilove/strtolower.h b/ansilove/strtolower.h
@@ -21,6 +21,7 @@
#define strtolower_h
// In-place modification of a string to be all lower case.
+
char *strtolower(char *str);
#endif
diff --git a/ansilove/substr.h b/ansilove/substr.h
@@ -21,6 +21,7 @@
#define substr_h
// Returns portion of a string specified by start and length parameters.
+
char *substr(char *str, size_t begin, size_t len);
#endif