From 1cab398f39a84ece69117a14837aac3b7da90b35 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 21:06:11 +0100 Subject: Removed -v version number parameter. --- src/main.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index f93a59c..d79a57a 100644 --- a/src/main.c +++ b/src/main.c @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) bool servermode = false; data_store_t *ds = data_store(); - const char* accepted = "u:s:p:n:hlmv"; + const char* accepted = "u:s:p:n:hlm"; while((opt = getopt(argc, argv, accepted)) != -1) { switch(opt) @@ -105,10 +105,6 @@ int main(int argc, char *argv[]) case 'm': print_manual(); break; - case 'v': - print_version(); - exit(EXIT_SUCCESS); - break; case 'h': // help default: print_usage(argv[0]); -- cgit v1.2.3 From ebd452492f3ddbad136bf41aa3b73df012e00be4 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 21:07:20 +0100 Subject: Removed -v parameter from usage information. --- src/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index d79a57a..58aa351 100644 --- a/src/main.c +++ b/src/main.c @@ -59,8 +59,7 @@ static void print_usage(const char* name) "\t-l\t\t\tstart server\n" "\t-u username\t\tyour nickname in the player list (default: $USER)\n" "\t-p port\t\t\tport to use for connecting/listening (default: %s)\n" - "\t-m\t\t\tdisplay the manual\n" - "\t-v\t\t\tprint version number\n"; + "\t-m\t\t\tdisplay the manual\n"; print_version(); fprintf(stderr, usage, name, DEFAULT_PORT); -- cgit v1.2.3 From 893623e5ca3405703cdc3e72e27033b21b718c25 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 21:15:22 +0100 Subject: Reduced license header width. --- src/card.c | 50 ++++++++++++++++++++++++------------------------ src/card.h | 50 ++++++++++++++++++++++++------------------------ src/card_stack.c | 50 ++++++++++++++++++++++++------------------------ src/card_stack.h | 50 ++++++++++++++++++++++++------------------------ src/client_game_states.c | 50 ++++++++++++++++++++++++------------------------ src/data_store.c | 50 ++++++++++++++++++++++++------------------------ src/data_store.h | 50 ++++++++++++++++++++++++------------------------ src/game.c | 50 ++++++++++++++++++++++++------------------------ src/game.h | 50 ++++++++++++++++++++++++------------------------ src/game_states.h | 50 ++++++++++++++++++++++++------------------------ src/hand.c | 50 ++++++++++++++++++++++++------------------------ src/hand.h | 50 ++++++++++++++++++++++++------------------------ src/main.c | 50 ++++++++++++++++++++++++------------------------ src/main_stack.c | 50 ++++++++++++++++++++++++------------------------ src/main_stack.h | 50 ++++++++++++++++++++++++------------------------ src/manual.c | 50 ++++++++++++++++++++++++------------------------ src/manual.h | 50 ++++++++++++++++++++++++------------------------ src/net/client.c | 50 ++++++++++++++++++++++++------------------------ src/net/client.h | 50 ++++++++++++++++++++++++------------------------ src/net/comm.c | 50 ++++++++++++++++++++++++------------------------ src/net/comm.h | 50 ++++++++++++++++++++++++------------------------ src/net/server.c | 50 ++++++++++++++++++++++++------------------------ src/net/server.h | 50 ++++++++++++++++++++++++------------------------ src/player.c | 50 ++++++++++++++++++++++++------------------------ src/player.h | 50 ++++++++++++++++++++++++------------------------ src/server_game_states.c | 50 ++++++++++++++++++++++++------------------------ src/table_stacks.c | 50 ++++++++++++++++++++++++------------------------ src/table_stacks.h | 50 ++++++++++++++++++++++++------------------------ src/ui.c | 50 ++++++++++++++++++++++++------------------------ src/ui.h | 50 ++++++++++++++++++++++++------------------------ 30 files changed, 750 insertions(+), 750 deletions(-) (limited to 'src') diff --git a/src/card.c b/src/card.c index 6773f6a..625acf4 100644 --- a/src/card.c +++ b/src/card.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "card.h" #include diff --git a/src/card.h b/src/card.h index 8e4279c..124e5cb 100644 --- a/src/card.h +++ b/src/card.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_CARD_H #define OXEN_CARD_H diff --git a/src/card_stack.c b/src/card_stack.c index 3fcfd69..588f752 100644 --- a/src/card_stack.c +++ b/src/card_stack.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "card_stack.h" #include diff --git a/src/card_stack.h b/src/card_stack.h index 3f24e31..657dd56 100644 --- a/src/card_stack.h +++ b/src/card_stack.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #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 4a29a7c..b327855 100644 --- a/src/client_game_states.c +++ b/src/client_game_states.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "game_states.h" #include "net/comm.h" diff --git a/src/data_store.c b/src/data_store.c index 8651970..634d135 100644 --- a/src/data_store.c +++ b/src/data_store.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/data_store.h b/src/data_store.h index d67e9ce..1c0903c 100644 --- a/src/data_store.h +++ b/src/data_store.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_DATA_STORE_H #define OXEN_DATA_STORE_H diff --git a/src/game.c b/src/game.c index 8d30e5e..7e8b841 100644 --- a/src/game.c +++ b/src/game.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "game.h" #include "card.h" diff --git a/src/game.h b/src/game.h index 721a86f..3ab2555 100644 --- a/src/game.h +++ b/src/game.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_GAME_H #define OXEN_GAME_H diff --git a/src/game_states.h b/src/game_states.h index 845d66b..86a2f37 100644 --- a/src/game_states.h +++ b/src/game_states.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_GAME_STATES_H #define OXEN_GAME_STATES_H diff --git a/src/hand.c b/src/hand.c index 407fe48..7c1678b 100644 --- a/src/hand.c +++ b/src/hand.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "hand.h" #include diff --git a/src/hand.h b/src/hand.h index 8da70f1..7c9fe94 100644 --- a/src/hand.h +++ b/src/hand.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_HAND_H #define OXEN_HAND_H diff --git a/src/main.c b/src/main.c index 58aa351..de6c6a9 100644 --- a/src/main.c +++ b/src/main.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/main_stack.c b/src/main_stack.c index 76bee04..0f503dc 100644 --- a/src/main_stack.c +++ b/src/main_stack.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "main_stack.h" #include diff --git a/src/main_stack.h b/src/main_stack.h index 770766a..5117cdb 100644 --- a/src/main_stack.h +++ b/src/main_stack.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_MAIN_STACK_H #define OXEN_MAIN_STACK_H diff --git a/src/manual.c b/src/manual.c index 04c4bf8..c92d551 100644 --- a/src/manual.c +++ b/src/manual.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "manual.h" #include diff --git a/src/manual.h b/src/manual.h index c92c86f..bb3b96a 100644 --- a/src/manual.h +++ b/src/manual.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_MANUAL_H #define OXEN_MANUAL_H diff --git a/src/net/client.c b/src/net/client.c index 4c169e9..a62616e 100644 --- a/src/net/client.c +++ b/src/net/client.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/net/client.h b/src/net/client.h index ad7cabd..30f15a9 100644 --- a/src/net/client.h +++ b/src/net/client.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_CLIENT_H #define OXEN_CLIENT_H diff --git a/src/net/comm.c b/src/net/comm.c index fff661d..829fe31 100644 --- a/src/net/comm.c +++ b/src/net/comm.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/net/comm.h b/src/net/comm.h index f8715ac..58dbaf8 100644 --- a/src/net/comm.h +++ b/src/net/comm.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_NET_H #define OXEN_NET_H diff --git a/src/net/server.c b/src/net/server.c index ad36852..a37c17c 100644 --- a/src/net/server.c +++ b/src/net/server.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/net/server.h b/src/net/server.h index 578d31f..2869898 100644 --- a/src/net/server.h +++ b/src/net/server.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_SERVER_H #define OXEN_SERVER_H diff --git a/src/player.c b/src/player.c index 338942a..82148b3 100644 --- a/src/player.c +++ b/src/player.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "player.h" #include diff --git a/src/player.h b/src/player.h index abbfeff..fb3b0de 100644 --- a/src/player.h +++ b/src/player.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_PLAYER_H #define OXEN_PLAYER_H diff --git a/src/server_game_states.c b/src/server_game_states.c index 1b7a3ba..f3089fc 100644 --- a/src/server_game_states.c +++ b/src/server_game_states.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "game_states.h" #include diff --git a/src/table_stacks.c b/src/table_stacks.c index 12b7a9d..b9f2914 100644 --- a/src/table_stacks.c +++ b/src/table_stacks.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include #include diff --git a/src/table_stacks.h b/src/table_stacks.h index c177a3c..46ea7b7 100644 --- a/src/table_stacks.h +++ b/src/table_stacks.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_TABLE_STACKS_H #define OXEN_TABLE_STACKS_H diff --git a/src/ui.c b/src/ui.c index e24e994..735621f 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #include "ui.h" #include diff --git a/src/ui.h b/src/ui.h index e1461bf..d19839a 100644 --- a/src/ui.h +++ b/src/ui.h @@ -1,28 +1,28 @@ -/***************************************************************************** - * ___ __ __ ___ _ __ * - * / _ \\ \/ // _ \ '_ \ * - * | (_) |> <| __/ | | | * - * \___//_/\_\\___|_| |_| * - * * - * The card game * - * * - * Copyright (C) 2011, Reiner Herrmann * - * Mario Kilies * - * * - * 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 . * - * * - *****************************************************************************/ +/************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + **************************************************************************/ #ifndef OXEN_UI_H #define OXEN_UI_H -- cgit v1.2.3 From 930b41f48bf2a3a84b6256350452d90c584a3ab0 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 21:19:18 +0100 Subject: Minor changes to manual. --- src/manual.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/manual.c b/src/manual.c index c92d551..fc48c08 100644 --- a/src/manual.c +++ b/src/manual.c @@ -42,7 +42,7 @@ static const char* manual_text = " Players can set their nickname with '-u name' or by setting the USER\n" " environment variable.\n\n" " HOW TO PLAY:\n\n" -" Oxen is inspired by the card game known as \"Take 6\" or \"6 nimmt!\".\n" +" Oxen is inspired by the card game known as \"Take 6!\" or \"6 nimmt!\".\n" " It consists of a main stack with cards numbered from 1 to 104 and of 4 open\n" " table stacks that grow every round, but must not get larger than 5 cards.\n\n" @@ -64,7 +64,7 @@ static const char* manual_text = " If a stack would contain 6 cards after placing a card on it, the player who\n" " chose the card has to replace the stack with his chosen card and add the\n" " number of diamonds of all the cards within the replaced stack to his score\n" -" (therefore the name \"Take 6\" or \"6 nimmt\").\n\n" +" (therefore the name \"Take 6!\" or \"6 nimmt!\").\n\n" " If a card can not be placed on any table stack (because its number is lower\n" " than the top cards numbers of all stacks), the player can create a new\n" -- cgit v1.2.3