Add feature macros for strnlen
[str.git] / util.h
blobfe3eb8cd6114b822d7ffa310cd41d2dba82391fd
1 #ifndef __STR_UTIL_H
2 #define __STR_UTIL_H
4 #ifdef __GNUC__
5 #define INLINE inline __attribute__((always_inline))
6 #else
7 #define INLINE inline
8 #endif
10 #endif