1 //===-- C standard library header strings.h -------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLVM_LIBC_STRINGS_H 10 #define LLVM_LIBC_STRINGS_H 11 12 #include "__llvm-libc-common.h" 13 14 15 __BEGIN_C_DECLS 16 17 char * index(const char *, int) __NOEXCEPT; 18 19 char * rindex(const char *, int) __NOEXCEPT; 20 21 int strcasecmp(const char *, const char *) __NOEXCEPT; 22 23 int strncasecmp(const char *, const char *, size_t) __NOEXCEPT; 24 25 __END_C_DECLS 26 27 #endif // LLVM_LIBC_STRINGS_H 28