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

sort names in groupchat sidepanel

This commit is contained in:
Jfreegman
2013-11-24 02:33:03 -05:00
parent 1064e8d144
commit 4aa68c8251
3 changed files with 25 additions and 1 deletions

View File

@ -27,3 +27,6 @@ bool timed_out(uint64_t timestamp, uint64_t timeout, uint64_t curtime);
/* Beeps and makes window tab blink */
void alert_window(ToxWindow *self);
/* case-insensitive string compare function for use with qsort - same return logic as strcmp */
int name_compare(const void *nick1, const void *nick2);