1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef HEADER_CURL_MEMRCHR_H
- #define HEADER_CURL_MEMRCHR_H
- #include "curl_setup.h"
- #ifdef HAVE_MEMRCHR
- #ifdef HAVE_STRING_H
- # include <string.h>
- #endif
- #ifdef HAVE_STRINGS_H
- # include <strings.h>
- #endif
- #else
- void *Curl_memrchr(const void *s, int c, size_t n);
- #define memrchr(x,y,z) Curl_memrchr((x),(y),(z))
- #endif
- #endif
|