summaryrefslogtreecommitdiffstats
path: root/util/parsevar.pl
diff options
context:
space:
mode:
Diffstat (limited to 'util/parsevar.pl')
-rw-r--r--util/parsevar.pl23
1 files changed, 23 insertions, 0 deletions
diff --git a/util/parsevar.pl b/util/parsevar.pl
new file mode 100644
index 00000000..60063608
--- /dev/null
+++ b/util/parsevar.pl
@@ -0,0 +1,23 @@
+#!/usr/bin/perl
+print << '.';
+/*
+ * This header file is auto-generated from pttbbs/mbbsd/var.c .
+ * Please do NOT edit this file directly.
+ */
+
+#ifndef INCLUDE_VAR_H
+#define INCLUDE_VAR_H
+#include "bbs.h"
+.
+while( <> ){
+ if( /^\w/ ){
+ chomp;
+ $_ = substr($_, 0, index($_, '=') - 1) if( index($_, '=') != -1 );
+ $_ .= ';' if( index($_, ';') == -1 );
+ print "extern $_\n";
+ } elsif( /^\#/ && !/include/ ){
+ print;
+ }
+}
+print "#endif /* INCLUDE_VAR_H */\n";
+