blob: 4964113553cc4e98801308adb1e7937ff833f98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* src/helpers.h
* (c) 2022 Jonas Gunz <himself@jonasgunz.de>
* License: MIT
*/
#ifndef _HELPERS_H_
#define _HELPERS_H_
#include <stdint.h>
uint8_t hex_to_byte(char c[]);
uint8_t hex_to_halfbyte(char c);
#endif /* _HELPERS_H_ */
|