utils.h 382 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. static const char hexchars[] = "0123456789abcdef";
  8. int
  9. hex(char ch);
  10. char *
  11. mem2hex(char *mem, char *buf, int count);
  12. char *
  13. hex2mem(char *buf, char *mem, int count);
  14. int
  15. unescape(char *msg, int len);
  16. #endif /* UTILS_H */