Test UnboundedBlockingQueue in ThreadPoolExecutorTest
[folly.git] / folly / Unicode.h
index 542dc10babad2706e5efc2fa10e253e755c9b138..eaeb05f4511253a82a1b49f2c8218381f1b9ea7f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -31,6 +31,14 @@ namespace folly {
  */
 std::string codePointToUtf8(char32_t cp);
 
+/*
+ * Decode a single unicode code point from UTF-8 byte sequence.
+ */
+char32_t utf8ToCodePoint(
+    const unsigned char*& p,
+    const unsigned char* const e,
+    bool skipOnError);
+
 //////////////////////////////////////////////////////////////////////
 
-}
+} // namespace folly