]> Pileus Git - wmpus/blobdiff - conf.c
Add fullscreen support
[wmpus] / conf.c
diff --git a/conf.c b/conf.c
index 9d8dff9d541f2417dc0154f4f0d51ca4050380bb..407165546c72e4c83c8234672753aef4bac011f7 100644 (file)
--- a/conf.c
+++ b/conf.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011, Andy Spencer <andy753421@gmail.com>
+ * Copyright (c) 2011-2012, Andy Spencer <andy753421@gmail.com>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -74,11 +74,11 @@ static void conf_set(const char *key, int num, const char *str)
        if (str) {
                entry->type = STRING;
                entry->str  = strdup(str);
-               printf("set_str: %s = %s\n", key, str);
+               //printf("set_str: %s = %s\n", key, str);
        } else {
                entry->type = NUMBER;
                entry->num  = num;
-               printf("set_num: %s = %d\n", key, num);
+               //printf("set_num: %s = %d\n", key, num);
        }
        tsearch(entry, &conf, conf_cmp);
 }
@@ -103,7 +103,7 @@ static void load_file(const char *path)
        char key[256]={}, val[256]={}, fullkey[256]={};
        FILE *fd = fopen(path, "rt");
        if (!fd) return;
-       printf("load_file: %s\n", path);
+       //printf("load_file: %s\n", path);
        while (fgets(line, sizeof(line), fd)) {
                /* Find special characters */
                char *lbrace = strchr(           line   , '[');
@@ -127,7 +127,7 @@ static void load_file(const char *path)
                                        section, strtrim(key));
                        if (!strchr(fullkey, ' ')) {
                                conf_set_str(fullkey, val);
-                               printf("  [%s] = [%s]\n", fullkey, val);
+                               //printf("  [%s] = [%s]\n", fullkey, val);
                        }
                }
                else if (section[0] && equal) {
@@ -147,7 +147,7 @@ static void load_file(const char *path)
                                        conf_set_int(fullkey, 0);
                                else
                                        conf_set_str(fullkey, trim);
-                               printf("  [%s] = [%s]\n", fullkey, trim);
+                               //printf("  [%s] = [%s]\n", fullkey, trim);
                        }
                }
        }