1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-02 06:37:46 +02:00
toxic/src/misc_tools.h

33 lines
939 B
C
Raw Normal View History

/*
* Toxic -- Tox Curses Client
*/
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
/* convert a hex string to binary */
unsigned char *hex_string_to_bin(char hex_string[]);
/* get the current local time */
struct tm *get_time(void);
2013-10-11 10:42:30 +02:00
/* Prints the time to given window */
void print_time(WINDOW *window);
2013-10-20 06:50:08 +02:00
/* Returns 1 if the string is empty, 0 otherwise */
int string_is_empty(char *string);
/* convert wide characters to null terminated string */
uint8_t *wcs_to_char(wchar_t *string);
/* convert a wide char to null terminated string */
char *wc_to_char(wchar_t ch);
2013-11-15 01:14:54 +01:00
/* Returns true if connection has timed out, false otherwise */
2013-11-19 08:31:22 +01:00
bool timed_out(uint64_t timestamp, uint64_t timeout, uint64_t curtime);
/* Beeps and makes window tab blink */
void alert_window(ToxWindow *self);
2013-11-24 08:33:03 +01:00
/* case-insensitive string compare function for use with qsort - same return logic as strcmp */
2013-11-24 23:12:24 +01:00
int name_compare(const void *nick1, const void *nick2);