]> granicus.if.org Git - sudo/blob - lib/util/memrchr.c
225b542a98c260255790e936b47e4ae6ed6ba45c
[sudo] / lib / util / memrchr.c
1 /*
2  * Copyright (c) 2007, 2010-2014
3  *      Todd C. Miller <Todd.Miller@sudo.ws>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /*
19  * This is an open source non-commercial project. Dear PVS-Studio, please check it.
20  * PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
21  */
22
23 #include <config.h>
24
25 #ifndef HAVE_MEMRCHR
26
27 #include <sys/types.h>
28
29 #include "sudo_compat.h"
30
31 /*
32  * Reverse memchr()
33  * Find the last occurrence of 'c' in the buffer 's' of size 'n'.
34  */
35 void *
36 sudo_memrchr(const void *s, int c, size_t n)
37 {
38     const unsigned char *cp;
39
40     if (n != 0) {
41         cp = (unsigned char *)s + n;
42         do {
43             if (*(--cp) == (unsigned char)c)
44                 return (void *)cp;
45         } while (--n != 0);
46     }
47     return (void *)0;
48 }
49 #endif /* HAVE_MEMRCHR */