xref: /freebsd/contrib/llvm-project/libcxx/modules/std/cstring.inc (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
15f757f3fSDimitry Andric// -*- C++ -*-
25f757f3fSDimitry Andric//===----------------------------------------------------------------------===//
35f757f3fSDimitry Andric//
45f757f3fSDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
55f757f3fSDimitry Andric// See https://llvm.org/LICENSE.txt for license information.
65f757f3fSDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
75f757f3fSDimitry Andric//
85f757f3fSDimitry Andric//===----------------------------------------------------------------------===//
95f757f3fSDimitry Andric
105f757f3fSDimitry Andricexport namespace std {
11*0fca6ea1SDimitry Andric  using std::size_t _LIBCPP_USING_IF_EXISTS;
125f757f3fSDimitry Andric
13*0fca6ea1SDimitry Andric  using std::memchr _LIBCPP_USING_IF_EXISTS;
14*0fca6ea1SDimitry Andric  using std::memcmp _LIBCPP_USING_IF_EXISTS;
15*0fca6ea1SDimitry Andric  using std::memcpy _LIBCPP_USING_IF_EXISTS;
16*0fca6ea1SDimitry Andric  using std::memmove _LIBCPP_USING_IF_EXISTS;
17*0fca6ea1SDimitry Andric  using std::memset _LIBCPP_USING_IF_EXISTS;
18*0fca6ea1SDimitry Andric  using std::strcat _LIBCPP_USING_IF_EXISTS;
19*0fca6ea1SDimitry Andric  using std::strchr _LIBCPP_USING_IF_EXISTS;
20*0fca6ea1SDimitry Andric  using std::strcmp _LIBCPP_USING_IF_EXISTS;
21*0fca6ea1SDimitry Andric  using std::strcoll _LIBCPP_USING_IF_EXISTS;
22*0fca6ea1SDimitry Andric  using std::strcpy _LIBCPP_USING_IF_EXISTS;
23*0fca6ea1SDimitry Andric  using std::strcspn _LIBCPP_USING_IF_EXISTS;
24*0fca6ea1SDimitry Andric  using std::strerror _LIBCPP_USING_IF_EXISTS;
25*0fca6ea1SDimitry Andric  using std::strlen _LIBCPP_USING_IF_EXISTS;
26*0fca6ea1SDimitry Andric  using std::strncat _LIBCPP_USING_IF_EXISTS;
27*0fca6ea1SDimitry Andric  using std::strncmp _LIBCPP_USING_IF_EXISTS;
28*0fca6ea1SDimitry Andric  using std::strncpy _LIBCPP_USING_IF_EXISTS;
29*0fca6ea1SDimitry Andric  using std::strpbrk _LIBCPP_USING_IF_EXISTS;
30*0fca6ea1SDimitry Andric  using std::strrchr _LIBCPP_USING_IF_EXISTS;
31*0fca6ea1SDimitry Andric  using std::strspn _LIBCPP_USING_IF_EXISTS;
32*0fca6ea1SDimitry Andric  using std::strstr _LIBCPP_USING_IF_EXISTS;
33*0fca6ea1SDimitry Andric  using std::strtok _LIBCPP_USING_IF_EXISTS;
34*0fca6ea1SDimitry Andric  using std::strxfrm _LIBCPP_USING_IF_EXISTS;
355f757f3fSDimitry Andric} // namespace std
36