diff options
author | EliteTK <tomasz.kramkowski@gmail.com> | 2014-12-29 01:34:48 +0000 |
---|---|---|
committer | EliteTK <tomasz.kramkowski@gmail.com> | 2014-12-29 01:34:48 +0000 |
commit | 74c848c2409fc5270c078ac8457fa514c1b90d55 (patch) | |
tree | d67a95e0aaeddf3619b0543ea523df8944de159a | |
parent | ecdc45374aecdbcdb5c1d374742d9c528fb8298e (diff) | |
download | c-stuff-74c848c2409fc5270c078ac8457fa514c1b90d55.tar.gz c-stuff-74c848c2409fc5270c078ac8457fa514c1b90d55.tar.xz c-stuff-74c848c2409fc5270c078ac8457fa514c1b90d55.zip |
Cleanup and license headers.
-rw-r--r-- | csgocolors.c | 8 | ||||
-rw-r--r-- | fibbonacci.c | 9 | ||||
-rw-r--r-- | simple_x.c | 9 | ||||
-rw-r--r-- | test.c | 0 | ||||
-rw-r--r-- | xosd_test.c | 9 |
5 files changed, 27 insertions, 8 deletions
diff --git a/csgocolors.c b/csgocolors.c deleted file mode 100644 index e221741..0000000 --- a/csgocolors.c +++ /dev/null @@ -1,8 +0,0 @@ -#include <stdio.h> - -int main() -{ - for (unsigned char i = 0; i < 128; i++) - printf("%c%04x ", i, i); - return 0; -} diff --git a/fibbonacci.c b/fibbonacci.c index 4ebad5c..acc3ddf 100644 --- a/fibbonacci.c +++ b/fibbonacci.c @@ -1,3 +1,12 @@ +/* + * Copyright (C) 2014 Tomasz Kramkowski <tk@the-tk.com> + * + * This program is free software. It is licensed under version 3 of the + * GNU General Public License. + * + * 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> int main(/*int argc, char **argv*/) { @@ -1,3 +1,12 @@ +/* + * Copyright (C) 2014 Tomasz Kramkowski <tk@the-tk.com> + * + * This program is free software. It is licensed under version 3 of the + * GNU General Public License. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see [http://www.gnu.org/licenses/]. + */ /* SimplX - Proposed name if not taken already. */ #include <stdlib.h> #include <xcb/xcb.h> diff --git a/xosd_test.c b/xosd_test.c index 4ed5c1f..a570556 100644 --- a/xosd_test.c +++ b/xosd_test.c @@ -1,3 +1,12 @@ +/* + * Copyright (C) 2014 Tomasz Kramkowski <tk@the-tk.com> + * + * This program is free software. It is licensed under version 3 of the + * GNU General Public License. + * + * 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 <xosd.h> |