utils.h 366 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2021 Ant Group. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef UTILS_H
  6. #define UTILS_H
  7. #include "bh_platform.h"
  8. int32
  9. hex(char ch);
  10. char *
  11. mem2hex(char *mem, char *buf, int32 count);
  12. char *
  13. hex2mem(char *buf, char *mem, int32 count);
  14. int32
  15. unescape(char *msg, int32 len);
  16. #endif /* UTILS_H */