KizarmProbe.
 Vše Třídy Soubory Funkce Proměnné Výčty Hodnoty výčtu Definice maker Skupiny Stránky
utils.h
1 #ifndef UTILS_H
2 #define UTILS_H
3 #include <stdint.h>
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif //__cpluslpus
8 
9 uint8_t FromHex (uint8_t n);
10 uint8_t toHex (uint8_t n);
11 
12 unsigned char * hexify (char *hex, const unsigned char *buf, int size);
13 unsigned char * unhexify (unsigned char *buf, const unsigned char *hex, int size);
14 
15 uint32_t crc32_calc (uint32_t crc, uint8_t data);
16 
17 #ifdef __cplusplus
18 };
19 #endif //__cplusplus
20 
21 #endif // UTILS_H