summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-29 19:08:38 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-29 19:08:38 +0100
commitec83f384e46fd1a571f47da621f07bad1e9cc6a6 (patch)
tree91e80a5d3982f4307947c2abc7d1acb73879f785
parent2753ece7b713ea35d0e3e4da12715287ab5326ea (diff)
Added license headers.
-rw-r--r--src/card.c26
-rw-r--r--src/card.h26
-rw-r--r--src/card_stack.c26
-rw-r--r--src/card_stack.h26
-rw-r--r--src/client_game_states.c26
-rw-r--r--src/data_store.c26
-rw-r--r--src/data_store.h26
-rw-r--r--src/game.c26
-rw-r--r--src/game.h26
-rw-r--r--src/game_states.h26
-rw-r--r--src/hand.c26
-rw-r--r--src/hand.h26
-rw-r--r--src/main.c26
-rw-r--r--src/main_stack.c26
-rw-r--r--src/main_stack.h26
-rw-r--r--src/manual.c26
-rw-r--r--src/manual.h26
-rw-r--r--src/net/client.c26
-rw-r--r--src/net/client.h26
-rw-r--r--src/net/comm.c26
-rw-r--r--src/net/comm.h26
-rw-r--r--src/net/server.c26
-rw-r--r--src/net/server.h26
-rw-r--r--src/player.c26
-rw-r--r--src/player.h26
-rw-r--r--src/server_game_states.c26
-rw-r--r--src/table_stacks.c26
-rw-r--r--src/table_stacks.h26
-rw-r--r--src/ui.c26
29 files changed, 754 insertions, 0 deletions
diff --git a/src/card.c b/src/card.c
index 5132be6..6773f6a 100644
--- a/src/card.c
+++ b/src/card.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "card.h"
#include <assert.h>
diff --git a/src/card.h b/src/card.h
index 82cd5cf..8e4279c 100644
--- a/src/card.h
+++ b/src/card.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_CARD_H
#define OXEN_CARD_H
diff --git a/src/card_stack.c b/src/card_stack.c
index b5cfa8a..3fcfd69 100644
--- a/src/card_stack.c
+++ b/src/card_stack.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "card_stack.h"
#include <assert.h>
#include <stdlib.h>
diff --git a/src/card_stack.h b/src/card_stack.h
index 7e1d976..3f24e31 100644
--- a/src/card_stack.h
+++ b/src/card_stack.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_CARD_STACK_H
#define OXEN_CARD_STACK_H
diff --git a/src/client_game_states.c b/src/client_game_states.c
index 4786ae9..21b0bb6 100644
--- a/src/client_game_states.c
+++ b/src/client_game_states.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "game_states.h"
#include "net/comm.h"
#include "ui.h"
diff --git a/src/data_store.c b/src/data_store.c
index 69baed9..8651970 100644
--- a/src/data_store.c
+++ b/src/data_store.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <stdlib.h>
#include <string.h>
#include <assert.h>
diff --git a/src/data_store.h b/src/data_store.h
index 0b4a33a..d67e9ce 100644
--- a/src/data_store.h
+++ b/src/data_store.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_DATA_STORE_H
#define OXEN_DATA_STORE_H
diff --git a/src/game.c b/src/game.c
index 203d2fe..8d30e5e 100644
--- a/src/game.c
+++ b/src/game.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "game.h"
#include "card.h"
#include "hand.h"
diff --git a/src/game.h b/src/game.h
index 681d3df..721a86f 100644
--- a/src/game.h
+++ b/src/game.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_GAME_H
#define OXEN_GAME_H
diff --git a/src/game_states.h b/src/game_states.h
index bc99108..845d66b 100644
--- a/src/game_states.h
+++ b/src/game_states.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_GAME_STATES_H
#define OXEN_GAME_STATES_H
diff --git a/src/hand.c b/src/hand.c
index d6a047d..407fe48 100644
--- a/src/hand.c
+++ b/src/hand.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "hand.h"
#include <stdlib.h>
#include <assert.h>
diff --git a/src/hand.h b/src/hand.h
index f922ccf..8da70f1 100644
--- a/src/hand.h
+++ b/src/hand.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_HAND_H
#define OXEN_HAND_H
diff --git a/src/main.c b/src/main.c
index ffae6e2..df4671e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <stdlib.h>
#include <string.h>
#include <stdio.h>
diff --git a/src/main_stack.c b/src/main_stack.c
index 0482371..76bee04 100644
--- a/src/main_stack.c
+++ b/src/main_stack.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "main_stack.h"
#include <stdlib.h>
diff --git a/src/main_stack.h b/src/main_stack.h
index aa2d420..770766a 100644
--- a/src/main_stack.h
+++ b/src/main_stack.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_MAIN_STACK_H
#define OXEN_MAIN_STACK_H
diff --git a/src/manual.c b/src/manual.c
index 8316617..03114fb 100644
--- a/src/manual.c
+++ b/src/manual.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "manual.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/src/manual.h b/src/manual.h
index 3e43a41..c92c86f 100644
--- a/src/manual.h
+++ b/src/manual.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_MANUAL_H
#define OXEN_MANUAL_H
diff --git a/src/net/client.c b/src/net/client.c
index eec83a5..4c169e9 100644
--- a/src/net/client.c
+++ b/src/net/client.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
diff --git a/src/net/client.h b/src/net/client.h
index f0ec810..ad7cabd 100644
--- a/src/net/client.h
+++ b/src/net/client.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_CLIENT_H
#define OXEN_CLIENT_H
diff --git a/src/net/comm.c b/src/net/comm.c
index 2bfacfa..fff661d 100644
--- a/src/net/comm.c
+++ b/src/net/comm.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <sys/types.h>
#include <sys/socket.h>
#include <stdlib.h>
diff --git a/src/net/comm.h b/src/net/comm.h
index b9fff41..f8715ac 100644
--- a/src/net/comm.h
+++ b/src/net/comm.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_NET_H
#define OXEN_NET_H
diff --git a/src/net/server.c b/src/net/server.c
index 27fbd14..ad36852 100644
--- a/src/net/server.c
+++ b/src/net/server.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
diff --git a/src/net/server.h b/src/net/server.h
index b5c0524..578d31f 100644
--- a/src/net/server.h
+++ b/src/net/server.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_SERVER_H
#define OXEN_SERVER_H
diff --git a/src/player.c b/src/player.c
index 4e7d5e9..338942a 100644
--- a/src/player.c
+++ b/src/player.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "player.h"
#include <stdlib.h>
#include <assert.h>
diff --git a/src/player.h b/src/player.h
index 920cf4d..abbfeff 100644
--- a/src/player.h
+++ b/src/player.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_PLAYER_H
#define OXEN_PLAYER_H
diff --git a/src/server_game_states.c b/src/server_game_states.c
index 4f9268a..1b7a3ba 100644
--- a/src/server_game_states.c
+++ b/src/server_game_states.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "game_states.h"
#include <stdlib.h>
#include <string.h>
diff --git a/src/table_stacks.c b/src/table_stacks.c
index 6230a1f..12b7a9d 100644
--- a/src/table_stacks.c
+++ b/src/table_stacks.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 <stdlib.h>
#include <assert.h>
#include "table_stacks.h"
diff --git a/src/table_stacks.h b/src/table_stacks.h
index 3528012..c177a3c 100644
--- a/src/table_stacks.h
+++ b/src/table_stacks.h
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 OXEN_TABLE_STACKS_H
#define OXEN_TABLE_STACKS_H
diff --git a/src/ui.c b/src/ui.c
index f7b9b08..e24e994 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -1,3 +1,29 @@
+/*****************************************************************************
+ * ___ __ __ ___ _ __ *
+ * / _ \\ \/ // _ \ '_ \ *
+ * | (_) |> <| __/ | | | *
+ * \___//_/\_\\___|_| |_| *
+ * *
+ * The card game *
+ * *
+ * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> *
+ * Mario Kilies <MarioKilies@GMX.net> *
+ * *
+ * 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 "ui.h"
#include <assert.h>
#include "card_stack.h"