eae93f5edbef86bf39c18d8891d8199622c7a477
[folly.git] / folly / portability / String.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/portability/String.h>
18
19 #if !FOLLY_HAVE_MEMRCHR || defined(_WIN32) || defined(__APPLE__)
20 extern "C" void* memrchr(const void* s, int c, size_t n) {
21   for (auto p = ((const char*)s) + n - 1; p >= (const char*)s; p--) {
22     if (*p == (char)c) {
23       return (void*)p;
24     }
25   }
26   return nullptr;
27 }
28 #endif
29
30 #ifdef _WIN32
31 #include <stdlib.h>
32
33 extern "C" {
34 char* strndup(const char* a, size_t len) {
35   auto neededLen = strlen(a);
36   if (neededLen > len) {
37     neededLen = len - 1;
38   }
39   char* buf = (char*)malloc((neededLen + 1) * sizeof(char));
40   memcpy(buf, a, neededLen);
41   buf[neededLen] = '\0';
42   return buf;
43 }
44
45 char* strtok_r(char* str, char const* delim, char** ctx) {
46   return strtok_s(str, delim, ctx);
47 }
48 }
49 #endif