From ce4ac96276d480cdb61f0771c11a7637622458b4 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 22 Nov 2013 09:44:28 +0100 Subject: Coding style fixes * remove trailing whitespace * inline where fit for 80 columns --- src/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index c915202..379e48f 100644 --- a/src/io.c +++ b/src/io.c @@ -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]; -- cgit