#include <stdlib.h>
#include <string.h>
#include <folly/portability/Config.h>
#include <strings.h>
Go to the source code of this file.
|
void * | memrchr (const void *s, int c, size_t n) |
|
void* memrchr |
( |
const void * |
s, |
|
|
int |
c, |
|
|
size_t |
n |
|
) |
| |
Definition at line 20 of file String.cpp.
References a, b, c, and s.
Referenced by folly::rfind().
21 for (
auto p = ((
const char*)
s) + n - 1; p >= (
const char*)
s; p--) {