diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-11-22 09:44:28 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-11-22 10:14:27 +0100 |
commit | ce4ac96276d480cdb61f0771c11a7637622458b4 (patch) | |
tree | 4b8591d51d4b7a3034a91770b07e634389423572 /src/io.c | |
parent | 082293c5df0c99970e28330492cc4d30b0c629c8 (diff) | |
download | cmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.tar.gz cmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.tar.bz2 cmumble-ce4ac96276d480cdb61f0771c11a7637622458b4.zip |
Coding style fixes
* remove trailing whitespace
* inline where fit for 80 columns
Diffstat (limited to 'src/io.c')
-rw-r--r-- | src/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,7 +67,7 @@ static char * skip_whitespace(char *text) { int i; - + for (i = 0; text[i] != '\0'; ++i) { if (text[i] != ' ') return &text[i]; @@ -92,7 +92,7 @@ static char * skip_non_whitespace(char *text, char delimiter) { int i; - + for (i = 0; text[i] != '\0'; ++i) { if (text[i] == delimiter && !is_escaped(text, i, '\\')) return &text[i]; |