Merge pull request #4018 from orestisfl/reorder-docks

Sort dock clients by class and instance
This commit is contained in:
Ingo Bürk
2020-04-15 08:36:10 +02:00
committed by GitHub
5 changed files with 52 additions and 18 deletions

View File

@ -181,6 +181,12 @@ ssize_t writeall_nonblock(int fd, const void *buf, size_t count);
*/
ssize_t swrite(int fd, const void *buf, size_t count);
/**
* Like strcasecmp but considers the case where either string is NULL.
*
*/
int strcasecmp_nullable(const char *a, const char *b);
/**
* Build an i3String from an UTF-8 encoded string.
* Returns the newly-allocated i3String.