mirror of
https://github.com/djhackersdev/saltytools.git
synced 2026-03-21 17:54:11 -05:00
7 lines
165 B
C
7 lines
165 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
int hex_encode_lc(char **out, const void *bytes, size_t nbytes);
|
|
int hex_encode_uc(char **out, const void *bytes, size_t nbytes);
|