Code cleanups.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 2 Mar 2018 11:51:07 +0000 (12:51 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 2 Mar 2018 11:51:07 +0000 (12:51 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
lexer/main.c
lexer/print_helper.c
lexer/print_helper.h

index 40550f5a85d0b2d8935fa00a1b83d3b32e1411a3..26fd81a34c76f09ba2778a5ec3f18104df499e1a 100644 (file)
@@ -9,7 +9,7 @@
 #include "syntactic_analyzer.h"
 #include "print_helper.h"
 
-void do_lexical_analysis() {
+static void do_lexical_analysis() {
     c = fgetwc(source); // lecture du premier caractere
     do {
         scanner();
@@ -19,7 +19,7 @@ void do_lexical_analysis() {
     } while (tokenType != FIN); // tant que la fin du fichier n'est pas atteinte
 }
 
-void do_syntactic_analysis() {
+static void do_syntactic_analysis() {
     fputws(L"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"fr_FR\" lang=\"fr_FR\">\n",
            target);
     c = fgetwc(source); // lecture du premier caractere
@@ -28,7 +28,7 @@ void do_syntactic_analysis() {
     fputws(L"</html>\n", target);
 }
 
-void print_usage(const char* name) {
+static void print_usage(const char* name) {
     fprintf(stdout,"Usage: %s [options]\n"
                    "Where [options] are:\n"
                    " -h, --help: display this help message\n"
index 40d05232bb7004cc6e43f5624627440be7ebf6bd..8d6ddb447e3a9ab894521ccf8057ce0c80a7c753 100644 (file)
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include <wchar.h>
 #include <stdarg.h>
 
 #include "print_helper.h"
index d5cc42a1b2a8ce4388b82698e4f150d01e8ac254..384c50b0d8980fd3a2b201d818c06926222f6b28 100644 (file)
@@ -2,6 +2,7 @@
 #define PRINT_HELPER_H_
 
 #include <stdio.h>
+#include <wchar.h>
 
 void pr_warning(const char *format, ...);
 void pr_error(const char *format, ...);