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/strchrnul.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 include/compat/strchrnul.h (limited to 'include/compat/strchrnul.h') diff --git a/include/compat/strchrnul.h b/include/compat/strchrnul.h new file mode 100644 index 0000000..ca12806 --- /dev/null +++ b/include/compat/strchrnul.h @@ -0,0 +1,4 @@ +#ifndef STRCHRNUL_H +#define STRCHRNUL_H +char *strchrnul(const char* s, int c); +#endif -- cgit