10 lines
167 B
C
10 lines
167 B
C
/// © MiroZ 2024
|
|
|
|
#ifndef __UTILITIES_H__
|
|
#define __UTILITIES_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void dump_bytes(const void *data, uint32_t len);
|
|
|
|
#endif /* __UTILITIES_H__ */ |