19 lines
299 B
C
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);
|