1// -*- C++ -*- 2//===----------------------------------------------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// 9 10export { 11 using ::size_t; 12 13 using ::memchr; 14 using ::memcmp; 15 using ::memcpy; 16 using ::memmove; 17 using ::memset; 18 using ::strcat; 19 using ::strchr; 20 using ::strcmp; 21 using ::strcoll; 22 using ::strcpy; 23 using ::strcspn; 24 using ::strerror; 25 using ::strlen; 26 using ::strncat; 27 using ::strncmp; 28 using ::strncpy; 29 using ::strpbrk; 30 using ::strrchr; 31 using ::strspn; 32 using ::strstr; 33 using ::strtok; 34 using ::strxfrm; 35 36} // export 37