hash.hpp 290 B

123456789101112
  1. #ifndef AFUN_HASH_HPP
  2. #define AFUN_HASH_HPP
  3. #include "aFunToolExport.h"
  4. /* 哈希工具 */
  5. namespace aFuntool {
  6. typedef long int time33_t;
  7. AFUN_TOOL_EXPORT time33_t time33(const char *str);
  8. AFUN_TOOL_EXPORT time33_t time33(const std::string &str);
  9. }
  10. #endif //AFUN_HASH_HPP