|
Last change
on this file since b57ba05 was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago |
|
Update headers in C++ files
|
-
Property mode
set to
100644
|
|
File size:
700 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
|
|---|
| 3 | *
|
|---|
| 4 | * SPDX-License-Identifier: BSD-3-Clause
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #ifndef LIBCPP_CSTRING
|
|---|
| 8 | #define LIBCPP_CSTRING
|
|---|
| 9 |
|
|---|
| 10 | #define _REALLY_WANT_STRING_H
|
|---|
| 11 | #include <string.h>
|
|---|
| 12 |
|
|---|
| 13 | namespace std
|
|---|
| 14 | {
|
|---|
| 15 | using ::size_t;
|
|---|
| 16 |
|
|---|
| 17 | using ::strcpy;
|
|---|
| 18 | using ::strncpy;
|
|---|
| 19 | using ::strcat;
|
|---|
| 20 | using ::strncat;
|
|---|
| 21 | using ::strxfrm;
|
|---|
| 22 |
|
|---|
| 23 | using ::strlen;
|
|---|
| 24 | using ::strcmp;
|
|---|
| 25 | using ::strncmp;
|
|---|
| 26 | using ::strcoll;
|
|---|
| 27 | using ::strchr;
|
|---|
| 28 | using ::strrchr;
|
|---|
| 29 | using ::strspn;
|
|---|
| 30 | using ::strcspn;
|
|---|
| 31 | using ::strpbrk;
|
|---|
| 32 | using ::strstr;
|
|---|
| 33 | using ::strtok;
|
|---|
| 34 |
|
|---|
| 35 | using ::memchr;
|
|---|
| 36 | using ::memcmp;
|
|---|
| 37 | using ::memset;
|
|---|
| 38 | using ::memcpy;
|
|---|
| 39 | using ::memmove;
|
|---|
| 40 |
|
|---|
| 41 | using ::strerror;
|
|---|
| 42 | }
|
|---|
| 43 |
|
|---|
| 44 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.