summaryrefslogtreecommitdiff
path: root/src/io.c
AgeCommit message (Collapse)AuthorFilesLines
2016-05-07io.c: Use g_free where appropriate instead of freeBenjamin Franzke1-1/+1
doesn't result in an error but it's technically incorrect to mix g_strdup with free.
2016-05-07io.c: Make use of readline's RL_ISSTATE macroBenjamin Franzke1-1/+1
2016-05-07io.c: Rename read_cb to stdin_callbackBenjamin Franzke1-2/+2
..to be more understandable
2013-11-22Coding style fixesBenjamin Franzke1-2/+2
* remove trailing whitespace * inline where fit for 80 columns
2013-11-21io: Add another missing headerBenjamin Franzke1-0/+1
2013-11-18Fix typo in cmumble struct nameBenjamin Franzke1-4/+4
2012-02-10s/ctx/cm/g; s/struct cmumble_context/struct cmumlbe/gBenjamin Franzke1-17/+17
2011-09-29Support delimiter in cmdline argumentsBenjamin Franzke1-4/+32
Delimiters are " and '.
2011-09-28Pass argc and argv for internal commandsBenjamin Franzke1-16/+56
2011-09-28Revert "find_by_id: Fix lookup"Benjamin Franzke1-1/+1
This reverts commit c1cf0a71cfd8aa3441e57592e17de0d34823d305.
2011-09-28find_by_id: Fix lookupBenjamin Franzke1-1/+1
The offset should be taken from the (GList *)::data pointer, not the list directly..
2011-09-27Rename: cmumble_command_{complete=>expand_shortcut}Benjamin Franzke1-1/+1
2011-09-27Handle whitespace around commandsBenjamin Franzke1-2/+22
2011-09-27Add support for command shortcutsBenjamin Franzke1-1/+4
So that distinct substrings of commands, can be used as shortcuts.
2011-09-23Add prefix cmumble_ to struct context and struct userBenjamin Franzke1-4/+4
2011-09-23Add a command interfaceBenjamin Franzke1-8/+10
Also add two simple commands: help and ls
2011-09-23Fix indentsBenjamin Franzke1-3/+3
2011-09-23Fix warningsBenjamin Franzke1-0/+5
2011-09-23Add input support using readlineBenjamin Franzke1-0/+133