]> git.draconx.ca Git - cdecl99.git/commitdiff
Add missing copyright headers.
authorNick Bowler <nbowler@draconx.ca>
Wed, 6 Jul 2011 23:51:39 +0000 (19:51 -0400)
committerNick Bowler <nbowler@draconx.ca>
Wed, 6 Jul 2011 23:51:39 +0000 (19:51 -0400)
Makefile.am
configure.ac
src/cdecl.h
src/cdecl99.c
src/explain.c
src/parse-decl.c
src/parse.y
src/typemap.c

index 87635f605e24aeb99dfc91eca0ee3b586da6f62c..9ac21892ebb431693fea1f06095f13da889242af 100644 (file)
@@ -1,3 +1,9 @@
+# Copyright © 2011 Nick Bowler
+#
+# License WTFPL2: Do What The Fuck You Want To Public License, version 2.
+# This is free software: you are free to do what the fuck you want to.
+# There is NO WARRANTY, to the extent permitted by law.
+
 ACLOCAL_AMFLAGS = -I m4
 
 SUBDIRS = lib .
index 37184308e534faf4fa879c46726ee8ae94596a31..e749f5300ff7354b4bed2e10c0c118bbfa5d8b1f 100644 (file)
@@ -1,3 +1,9 @@
+dnl Copyright © 2011 Nick Bowler
+dnl
+dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2.
+dnl This is free software: you are free to do what the fuck you want to.
+dnl There is NO WARRANTY, to the extent permitted by law.
+
 AC_PREREQ([2.68])
 AC_INIT([cdecl99], [0.1], [nbowler@draconx.ca])
 AC_CONFIG_HEADER([config.h])
index 95d763424b9b88372efd071fa5380237d360d680..ffc01e36002194b72139d13147e922f54ff79ac7 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ *  Copyright © 2011 Nick Bowler
+ *
+ *  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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #ifndef CDECL_H_
 #define CDECL_H_
 
index 639edea68ac3de89665bfc67e24af40391ee7cff..23c3e5c409e40a004be10d048fa6eaaab28c1116 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ *  Command line utility for making sense of C declarations.
+ *  Copyright © 2011 Nick Bowler
+ *
+ *  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 3 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, see <http://www.gnu.org/licenses/>.
+ */
 #include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
index b0e9a84fe9ddce6e08c7ee089d1ad069f6614e38..1cb8602915814e616e9b9557aaab00bb2769e175 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ *  Render C declarations as English.
+ *  Copyright © 2011 Nick Bowler
+ *
+ *  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 3 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, see <http://www.gnu.org/licenses/>.
+ */
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
index 45ade359784acfecaa1d34f19d3b4de870357137..bf70a60ab857df06a4cfeef482e65e448502d58d 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ *  Parse and validate C declarations.
+ *  Copyright © 2011 Nick Bowler
+ *
+ *  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 3 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, see <http://www.gnu.org/licenses/>.
+ */
 #include <stdio.h>
 #include <assert.h>
 
index 86091f9c33e71b609e8141fcf5be4e13d51f3651..ac8524c4bd5d999faca3c17b9458d4d46f90f00f 100644 (file)
@@ -1,3 +1,4 @@
+%code top {
 /*
  *  Parser for C declarations.
  *  Copyright © 2011 Nick Bowler
@@ -15,6 +16,7 @@
  *  You should have received a copy of the GNU General Public License
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+}
 
 %parse-param {struct cdecl **out}
 %define api.pure
index 599d2cab2331bcb575c7fdf499a994dcd7c7b7ea..cab18c8e793773e52dd536eec87fa6e5821bd4ea 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ *  Helpers for dealing with type specifiers.
+ *  Copyright © 2011 Nick Bowler
+ *
+ *  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 3 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, see <http://www.gnu.org/licenses/>.
+ */
 #include <stdio.h>
 #include <stdbool.h>
 #include "cdecl.h"