Files
sics/hexString.h
Koennecke Mark 18816067db Added hex logging back again.
Added it back in in AsyncQueue
2016-03-14 09:43:27 +01:00

19 lines
299 B
C

/*
* hexString.h
* byteutils
*
* Created by Richard Murphy on 3/7/10.
* Copyright 2010 McKenzie-Murphy. All rights reserved.
*
*/
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
uint8_t
*hexStringToBytes(char *inhex);
char
*bytesToHexString(uint8_t *bytes, size_t buflen);