brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · 9ad33b9 Raw
36 lines · plain
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-exception7//8//===----------------------------------------------------------------------===//9 10export namespace std {11  using std::size_t _LIBCPP_USING_IF_EXISTS;12 13  using std::memchr _LIBCPP_USING_IF_EXISTS;14  using std::memcmp _LIBCPP_USING_IF_EXISTS;15  using std::memcpy _LIBCPP_USING_IF_EXISTS;16  using std::memmove _LIBCPP_USING_IF_EXISTS;17  using std::memset _LIBCPP_USING_IF_EXISTS;18  using std::strcat _LIBCPP_USING_IF_EXISTS;19  using std::strchr _LIBCPP_USING_IF_EXISTS;20  using std::strcmp _LIBCPP_USING_IF_EXISTS;21  using std::strcoll _LIBCPP_USING_IF_EXISTS;22  using std::strcpy _LIBCPP_USING_IF_EXISTS;23  using std::strcspn _LIBCPP_USING_IF_EXISTS;24  using std::strerror _LIBCPP_USING_IF_EXISTS;25  using std::strlen _LIBCPP_USING_IF_EXISTS;26  using std::strncat _LIBCPP_USING_IF_EXISTS;27  using std::strncmp _LIBCPP_USING_IF_EXISTS;28  using std::strncpy _LIBCPP_USING_IF_EXISTS;29  using std::strpbrk _LIBCPP_USING_IF_EXISTS;30  using std::strrchr _LIBCPP_USING_IF_EXISTS;31  using std::strspn _LIBCPP_USING_IF_EXISTS;32  using std::strstr _LIBCPP_USING_IF_EXISTS;33  using std::strtok _LIBCPP_USING_IF_EXISTS;34  using std::strxfrm _LIBCPP_USING_IF_EXISTS;35} // namespace std36