Implement __builtin_ctzll for MSVC
[folly.git] / folly / portability / String.h
index d9022cde8eb1f8cf83351077be08d9351f62f4d1..f7b296a8eb387d599a93517525e986ec7a6cfb1b 100755 (executable)
@@ -30,5 +30,10 @@ extern "C" char* strndup(const char* a, size_t len);
 #endif
 
 #ifdef _WIN32
-extern "C" char* strtok_r(char* str, char const* delim, char** ctx);
+extern "C" {
+void bzero(void* s, size_t n);
+int strcasecmp(const char* a, const char* b);
+int strncasecmp(const char* a, const char* b, size_t c);
+char* strtok_r(char* str, char const* delim, char** ctx);
+}
 #endif