summaryrefslogtreecommitdiff
path: root/src/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c4
1 files changed, 2 insertions, 2 deletions
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];