summaryrefslogtreecommitdiff
path: root/util.h
blob: 723e27d2fcb74db0b33c88e60eb7d978e6b30761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _UTIL_H
#define _UTIL_H

#include <unistd.h>
#include <stdint.h>
#define countof(x) (sizeof(x)/sizeof(*(x)))
#define char_t unsigned char

void writechecksum(uint8_t *address);
void to_hex(char_t *a, const char_t *p, int size);
void id_to_string(char_t *dest, const char_t *src);
int string_to_id(char_t *w, char_t *a);

#endif