1 /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 2 #ifndef UNICODE_ESCAPE_H 3 #define UNICODE_ESCAPE_H 4 5 #include <string> 6 7 /** \addtogroup bulk_extractor_APIs 8 * @{ 9 */ 10 /** \file */ 11 extern bool validateOrEscapeUTF8_validate; 12 std::string validateOrEscapeUTF8(const std::string &input, bool escape_bad_UTF8,bool escape_backslash); 13 14 #endif