From da74c1e073d935102c9a78bd3c839af3c340fa6e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 22 Oct 2017 10:18:35 +0200 Subject: [PATCH] Code cleanup: properly indent the scanner function. --- lexer/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lexer/main.c b/lexer/main.c index a53d793..4572d02 100644 --- a/lexer/main.c +++ b/lexer/main.c @@ -44,9 +44,9 @@ bool isSeparator() { } int scanner() { -const char* Titre = "Titre"; -const char* Auteur = "Auteur"; -unsigned int j = 0; + const char* Titre = "Titre"; + const char* Auteur = "Auteur"; + unsigned int j = 0; // The main loop get the next character init: -- 2.34.1