mirror of
https://github.com/Tha14/toxic.git
synced 2025-06-29 06:56:44 +02:00
implement toxdns3 username lookups
This commit is contained in:
@ -25,8 +25,13 @@
|
||||
#include "windows.h"
|
||||
#include "toxic.h"
|
||||
|
||||
#ifndef MIN
|
||||
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
|
||||
#endif
|
||||
|
||||
#ifndef MAX
|
||||
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#endif
|
||||
|
||||
/* convert a hex string to binary */
|
||||
char *hex_string_to_bin(const char *hex_string);
|
||||
|
Reference in New Issue
Block a user