2
0

encoding.inline.h 233 B

1234567891011
  1. #ifndef AFUN_ENCODING_INLINE_H
  2. #define AFUN_ENCODING_INLINE_H
  3. #include "encoding.h"
  4. namespace aFuntool {
  5. bool isCharUTF8(const std::string &str) {
  6. return isCharUTF8(str.c_str());
  7. }
  8. }
  9. #endif //AFUN_ENCODING_INLINE_H