xref: /freebsd/contrib/llvm-project/libcxx/modules/std/cstring.inc (revision aa1a8ff2d6dbc51ef058f46f3db5a8bb77967145)
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 namespace std {
11  using std::size_t;
12
13  using std::memchr;
14  using std::memcmp;
15  using std::memcpy;
16  using std::memmove;
17  using std::memset;
18  using std::strcat;
19  using std::strchr;
20  using std::strcmp;
21  using std::strcoll;
22  using std::strcpy;
23  using std::strcspn;
24  using std::strerror;
25  using std::strlen;
26  using std::strncat;
27  using std::strncmp;
28  using std::strncpy;
29  using std::strpbrk;
30  using std::strrchr;
31  using std::strspn;
32  using std::strstr;
33  using std::strtok;
34  using std::strxfrm;
35} // namespace std
36