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 10module; 11#include <cstring> 12 13export module std:cstring; 14export namespace std { 15 using std::size_t; 16 17 using std::memchr; 18 using std::memcmp; 19 using std::memcpy; 20 using std::memmove; 21 using std::memset; 22 using std::strcat; 23 using std::strchr; 24 using std::strcmp; 25 using std::strcoll; 26 using std::strcpy; 27 using std::strcspn; 28 using std::strerror; 29 using std::strlen; 30 using std::strncat; 31 using std::strncmp; 32 using std::strncpy; 33 using std::strpbrk; 34 using std::strrchr; 35 using std::strspn; 36 using std::strstr; 37 using std::strtok; 38 using std::strxfrm; 39} // namespace std 40