summaryrefslogtreecommitdiff
path: root/common/compat.h
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-04-04 19:42:19 +0000
committerStef Walter <stef@memberwebs.com>2006-04-04 19:42:19 +0000
commit1fe43cb40fb54412528b7538718a457d2167c603 (patch)
tree7eef0a4db45b1dea94d6820273b859db0cab45dd /common/compat.h
parent6972f27080656ad3d2601fcb921c9a2389ac08a5 (diff)
Add support for simpler create options.
Diffstat (limited to 'common/compat.h')
-rw-r--r--common/compat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/compat.h b/common/compat.h
index 12ffad6..8aaef66 100644
--- a/common/compat.h
+++ b/common/compat.h
@@ -77,4 +77,12 @@ void atexitv(void (*func)(void*), void* data);
void* xcalloc(size_t size);
#endif
+#ifndef HAVE_STRLWR
+void strlwr(char* data);
+#endif
+
+#ifndef HAVE_STRUPR
+void strupr(char* data);
+#endif
+
#endif /* __COMPAT_H__ */