repo.or.cz
/
str.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add feature macros for strnlen
[str.git]
/
util.h
blob
fe3eb8cd6114b822d7ffa310cd41d2dba82391fd
1
#ifndef __STR_UTIL_H
2
#define __STR_UTIL_H
3
4
#ifdef __GNUC__
5
#define INLINE inline __attribute__((always_inline))
6
#else
7
#define INLINE inline
8
#endif
9
10
#endif