14 lines
238 B
C
14 lines
238 B
C
//
|
|
// Created by bruno on 6.2.2025.
|
|
//
|
|
|
|
#ifndef RISCB_HEXDUMP_H
|
|
#define RISCB_HEXDUMP_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
char *hexdump_to_string(const unsigned char *data, uint32_t start, uint32_t end);
|
|
|
|
#endif //RISCB_HEXDUMP_H
|