encoding.h 307 B

1234567891011121314
  1. #ifndef AFUN_ENCODING_H
  2. #define AFUN_ENCODING_H
  3. #include <iostream>
  4. #include "aFunToolExport.h"
  5. #include "macro.h"
  6. namespace aFuntool {
  7. AFUN_TOOL_EXPORT bool isCharUTF8(const char *str);
  8. AFUN_INLINE bool isCharUTF8(const std::string &str);
  9. }
  10. #include "encoding.inline.h"
  11. #endif //AFUN_ENCODING_H