repo.or.cz
/
ppn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
dependence_graph.cc: directly include required headers
[ppn.git]
/
memrchr.h
blob
b9c31a209efd1bbb8af3ccaaa6b8d4e3133703ca
1
#include
"config.h"
2
3
#ifndef HAVE_MEMRCHR
4
5
#include <string.h>
6
7
#if defined(__cplusplus)
8
extern
"C"
{
9
#endif
10
11
const void
*
memrchr
(
const void
*
s
,
int
c
,
size_t
n
);
12
13
#if defined(__cplusplus)
14
}
15
#endif
16
17
#endif