13 lines
201 B
C
13 lines
201 B
C
//
|
|
// Created by bruno on 6.2.2025.
|
|
//
|
|
|
|
#ifndef RISCB_HEXDUMP_H
|
|
#define RISCB_HEXDUMP_H
|
|
|
|
#include <stddef.h>
|
|
|
|
char *hexdump_to_string(const unsigned char *data, size_t size);
|
|
|
|
#endif //RISCB_HEXDUMP_H
|