You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
281 B

2 years ago
  1. #pragma once
  2. #include <stdint.h>
  3. namespace iflytop {
  4. using namespace std;
  5. class StringUtils {
  6. private:
  7. /* data */
  8. public:
  9. StringUtils(/* args */){};
  10. ~StringUtils(){};
  11. static uint8_t *hex_str_to_bytes(char *data, int32_t len, int32_t &bytelen);
  12. };
  13. } // namespace iflytop