home · contact · privacy
Server/py: Undummify build_fov_map().
[plomrogue] / src / client / parse.c
index 5efbaf97792ecaaa5733e52fb720e00c0da26ee1..5bf2bd71a957d95900c13076101ee5afc0eca415 100644 (file)
@@ -1,6 +1,11 @@
-/* src/client/parse.c */
-
-#define _POSIX_C_SOURCE 200809L /* strdup() */
+/* src/client/parse.c
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
+ */
+
+#define _POSIX_C_SOURCE 200809L /* strdup(), snprintf() */
 #include "parse.h"
 #include <stddef.h> /* size_t, NULL */
 #include <stdio.h> /* FILE, snprintf() */
@@ -31,7 +36,7 @@ extern void parse_file(char * path, void (* token_to_entry) (char *, char *))
     char * errline_line = try_malloc(linemax + 1, __func__);
     set_err_line_options(errline_intro, errline_line, 1);
     err_line_zero();
-    err_line(0 == linemax, "File is empty.");
+    err_line(!linemax, "File is empty.");
     char * token0 = NULL; /* For final token_to_entry() if while() stagnates. */
     char * token1 = NULL;
     char * err_val = "No value given.";
@@ -65,7 +70,7 @@ extern void parsetest_defcontext(uint8_t flags)
 
 extern void parsetest_too_many_values()
 {
-    err_line(NULL != token_from_line(NULL), "Too many values.");
+    err_line(!(!token_from_line(NULL)), "Too many values.");
 }