/* * 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); /* Prints the time to given window */ void print_time(WINDOW *window); /* 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); /* Returns true if connection has timed out, false otherwise */ bool timed_out(uint64_t timestamp, uint64_t timeout, uint64_t curtime); /* Colours the window tab according to type. Beeps if is_beep is true */ void alert_window(ToxWindow *self, int type, bool is_beep); /* case-insensitive string compare function for use with qsort - same return logic as strcmp */ int name_compare(const void *nick1, const void *nick2); /* Returns true if nick is valid. A valid toxic nick: - cannot be empty - cannot start with a space - must not contain contiguous spaces */ bool valid_nick(uint8_t *nick); /* * Buffer helper tools. */ /* Adds char to buffer at pos */ void add_char_to_buf(wchar_t *buf, size_t *pos, size_t *len, wint_t ch); /* Deletes the character before pos */ void del_char_buf_bck(wchar_t *buf, size_t *pos, size_t *len); /* Deletes the character at pos */ void del_char_buf_frnt(wchar_t *buf, size_t *pos, size_t *len); /* Deletes the line from beginning to pos */ void discard_buf(wchar_t *buf, size_t *pos, size_t *len); /* Deletes the line from pos to len */ void kill_buf(wchar_t *buf, size_t *pos, size_t *len); /* nulls buf and sets pos and len to 0 */ void reset_buf(wchar_t *buf, size_t *pos, size_t *len);