#include <string.h>
#include "byte.h"
#include "uint_t.h"
Go to the source code of this file.
|
int | char2hex (char in, uint8 *out) |
int | hex2char (uint8 in, char *out) |
int | hex_decode (const char *src, uint8 *dst) |
int | hex_encode (const uint8 *src, int srclen, char *dst, int dstlen) |
◆ char2hex()
int char2hex |
( |
char | in, |
|
|
uint8 * | out ) |
Definition at line 5 of file hex.c.
◆ hex2char()
int hex2char |
( |
uint8 | in, |
|
|
char * | out ) |
Definition at line 21 of file hex.c.
◆ hex_decode()
int hex_decode |
( |
const char * | src, |
|
|
uint8 * | dst ) |
Definition at line 30 of file hex.c.
◆ hex_encode()
int hex_encode |
( |
const uint8 * | src, |
|
|
int | srclen, |
|
|
char * | dst, |
|
|
int | dstlen ) |
Definition at line 42 of file hex.c.