tool_hash.h 388 B

1234567891011121314151617181920
  1. #ifndef AFUN_TOOL_HASH_H
  2. #define AFUN_TOOL_HASH_H
  3. #include "aFunToolExport.h"
  4. /* 哈希工具 */
  5. #ifndef AFUN_TOOL_C
  6. namespace aFuntool {
  7. #endif
  8. typedef long int time33_t;
  9. AFUN_TOOL_C_EXPORT_FUNC time33_t time33(const char *str);
  10. #ifdef __cplusplus
  11. AFUN_TOOL_EXPORT time33_t time33(const std::string &str);
  12. #endif
  13. #ifndef AFUN_TOOL_C
  14. }
  15. #endif
  16. #endif //AFUN_TOOL_HASH_H