blob: 89c627c182bbb46f17341008a8dc341b595cd2ff [file] [log] [blame]
xf.libdd93d52023-05-12 07:10:14 -07001/* This file should provide inline versions of string functions.
2
3 Surround GCC-specific parts with #ifdef __GNUC__, and use `__extern_inline'.
4
5 This file should define __STRING_INLINES if functions are actually defined
6 as inlines. */
7
8#ifndef _BITS_STRING_H
9#define _BITS_STRING_H 1
10
11/* Define whether to use the unaligned string inline ABI.
12 The string inline functions are an external ABI, thus cannot be changed
13 after the first release of a new target (unlike _STRING_ARCH_unaligned
14 which may be changed from release to release). Targets must support
15 unaligned accesses in hardware if either define is set to true. */
16#define _STRING_INLINE_unaligned 0
17
18#endif /* bits/string.h */