1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 00:36:45 +02:00

name conflict with core function might cause linking error

This commit is contained in:
Jfreegman
2014-08-15 12:22:39 -04:00
parent 67f637a1e1
commit 1d6ccf56a8
3 changed files with 4 additions and 4 deletions

View File

@ -34,10 +34,10 @@
#endif
#ifndef net_to_host
#define net_to_host(x, y) host_to_net(x, y)
#define net_to_host(x, y) hst_to_net(x, y)
#endif
void host_to_net(uint8_t *num, uint16_t numbytes);
void hst_to_net(uint8_t *num, uint16_t numbytes);
/* convert a hex string to binary */
char *hex_string_to_bin(const char *hex_string);