strings.h 410 B

12345678910111213141516171819202122
  1. /* strings.h */
  2. /*
  3. * Copyright (c) 2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRINGS_H_
  8. #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRINGS_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. extern int strncasecmp(const char *s1, const char *s2, size_t n);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRINGS_H_ */