Enable -Weverything, fix a ton of bugs.
This commit is contained in:
14
adsbus/hex.h
14
adsbus/hex.h
@@ -3,10 +3,10 @@
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
void hex_init();
|
||||
void hex_to_bin(uint8_t *, const char *, size_t);
|
||||
uint64_t hex_to_int(const char *, size_t);
|
||||
void hex_from_bin_upper(char *, const uint8_t *, size_t);
|
||||
void hex_from_bin_lower(char *, const uint8_t *, size_t);
|
||||
void hex_from_int_upper(char *, uint64_t, size_t);
|
||||
void hex_from_int_lower(char *, uint64_t, size_t);
|
||||
void hex_init(void);
|
||||
void hex_to_bin(uint8_t *, const uint8_t *, size_t);
|
||||
uint64_t hex_to_int(const uint8_t *, size_t);
|
||||
void hex_from_bin_upper(uint8_t *, const uint8_t *, size_t);
|
||||
void hex_from_bin_lower(uint8_t *, const uint8_t *, size_t);
|
||||
void hex_from_int_upper(uint8_t *, uint64_t, size_t);
|
||||
void hex_from_int_lower(uint8_t *, uint64_t, size_t);
|
||||
|
||||
Reference in New Issue
Block a user