Changed output type of twc_hex2bin to (uint8_t *).

master
Håvard Pettersson 10 years ago
parent 2af297d24b
commit 20bcc0700a

@ -32,7 +32,7 @@
* Convert a hex string to it's binary equivalent of max size bytes.
*/
void
twc_hex2bin(const char *hex, size_t size, char *out)
twc_hex2bin(const char *hex, size_t size, uint8_t *out)
{
const char *position = hex;

@ -25,7 +25,7 @@
#include <tox/tox.h>
void
twc_hex2bin(const char *hex, size_t size, char *out);
twc_hex2bin(const char *hex, size_t size, uint8_t *out);
void
twc_bin2hex(const uint8_t *bin, size_t size, char *out);

Loading…
Cancel
Save