12 lines
283 B
C
12 lines
283 B
C
/// © MiroZ 2024
|
|
|
|
#ifndef __UTILITIES_H__
|
|
#define __UTILITIES_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void dump_bytes(const void *data, uint32_t len);
|
|
bool strToInt(const char *str, int & val, int base = 10);
|
|
bool strToFloat(const char *str, float & val);
|
|
|
|
#endif /* __UTILITIES_H__ */ |