chiark
/
gitweb
/
~mdw
/
userv-utils
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
New encrypting tunnel seems to work !
[userv-utils]
/
ipif
/
hex.h
1
/**/
2
3
#ifndef HEX__H_INCLUDED
4
#define HEX__H_INCLUDED
5
6
#include <stdint.h>
7
8
const char *tohex(uint8_t *data, int len, char *buf);
9
void unhex(const char *what, const char *txt, uint8_t *datar, int *lenr,
10
int minlen, int maxlen);
11
12
#endif