00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 00023 #include "curl_setup.h" 00024 00025 #include <curl/curl.h> 00026 00027 #include "curl_memrchr.h" 00028 #include "curl_memory.h" 00029 00030 /* The last #include file should be: */ 00031 #include "memdebug.h" 00032 00033 #ifndef HAVE_MEMRCHR 00034 00035 /* 00036 * Curl_memrchr() 00037 * 00038 * Our memrchr() function clone for systems which lack this function. The 00039 * memrchr() function is like the memchr() function, except that it searches 00040 * backwards from the end of the n bytes pointed to by s instead of forward 00041 * from the beginning. 00042 */ 00043 00044 void * 00045 Curl_memrchr(const void *s, int c, size_t n) 00046 { 00047 const unsigned char *p = s; 00048 const unsigned char *q = s; 00049 00050 p += n - 1; 00051 00052 while(p >= q) { 00053 if(*p == (unsigned char)c) 00054 return (void *)p; 00055 p--; 00056 } 00057 00058 return NULL; 00059 } 00060 00061 #endif /* HAVE_MEMRCHR */