Fix js to be consistent with b6235374b91ba7acf62c06c72de2f1291f46ac4c
[blerg.git] / database / util.c
index ede0450..6a37e49 100644 (file)
@@ -1,4 +1,8 @@
-#define VALID_CHAR(x) (x == ' ' || x == '\'' || x == '-' || x == '.' || (x >= '0' && x <= '9') || (x >= 'A' && x <= 'Z') || x == '_' || (x >= 'a' && x <= 'z'))
+/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
+ * BSD-style license.  Please see the COPYING file for details.
+ */
+
+#include "database.h"
 
 int valid_name(const char *name) {
        int i;