diff options
Diffstat (limited to 'jnlib/stringhelp.h')
-rw-r--r-- | jnlib/stringhelp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/jnlib/stringhelp.h b/jnlib/stringhelp.h index 5de50befe..adbd9bf02 100644 --- a/jnlib/stringhelp.h +++ b/jnlib/stringhelp.h @@ -95,6 +95,10 @@ char *strlwr(char *a); #ifndef HAVE_STRICMP # define stricmp(a,b) strcasecmp( (a), (b) ) #endif +#ifndef HAVE_MEMRCHR +void *memrchr (const void *buffer, int c, size_t n); +#endif + #ifndef HAVE_ISASCII static inline int |