changed printf format for size_t printing
[cparser] / warning.c
index 345b62a..05195e6 100644 (file)
--- a/warning.c
+++ b/warning.c
@@ -1,3 +1,22 @@
+/*
+ * This file is part of cparser.
+ * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
 #include <stdio.h>
 #include <string.h>
 #include "warning.h"
@@ -13,6 +32,7 @@ warning_t warning = {
        .main                          = true,
        .missing_declarations          = false,
        .missing_prototypes            = false,
+       .multichar                     = true,
        .redundant_decls               = true,
        .s_are_errors                  = false,
        .shadow                        = false,
@@ -55,7 +75,6 @@ void set_warning_opt(const char *const opt)
                SET(shadow)
                SET(sign_compare)
                SET(strict_prototypes)
-               SET(switch_default)
                SET(unknown_pragmas)
                SET(unused_function)
                SET(unused_label)
@@ -88,6 +107,7 @@ void set_warning_opt(const char *const opt)
        OPT("main",                          main)
        OPT("missing-declarations",          missing_declarations)
        OPT("missing-prototypes",            missing_prototypes)
+       OPT("multichar",                     multichar)
        OPT("redundant-decls",               redundant_decls)
        OPT("shadow",                        shadow)
        OPT("sign-compare",                  sign_compare)