string.h 709 B

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