gdbstub/mini-gdbstub/include/utils/translate.h

11 lines
204 B
C
Raw Normal View History

2025-09-21 16:18:35 +08:00
#ifndef UTILS_H
#define UTILS_H
#include <stdint.h>
void hex_to_str(uint8_t *num, char *str, int bytes);
void str_to_hex(char *str, uint8_t *num, int bytes);
int unescape(char *msg, char *end);
#endif