From b608b55786a8cecf626d7c489496ac402098b198 Mon Sep 17 00:00:00 2001 From: Alan Brault Date: Tue, 3 May 2011 09:28:09 -0400 Subject: Clean up compat, bring in strcasestr from OpenBSD and strchrnul from uclibc and separate the headers. --- include/compat/strcasestr.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 include/compat/strcasestr.h (limited to 'include/compat/strcasestr.h') diff --git a/include/compat/strcasestr.h b/include/compat/strcasestr.h new file mode 100644 index 0000000..67917d0 --- /dev/null +++ b/include/compat/strcasestr.h @@ -0,0 +1,4 @@ +#ifndef STRCASESTR_H +#define STRCASESTR_H +char *strcasestr(const char *s, const char *find); +#endif -- cgit