diff --git a/src/mcsfile/args.c b/src/mcsfile/args.c index 567d1c1..f903f52 100644 --- a/src/mcsfile/args.c +++ b/src/mcsfile/args.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* args.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: mcsfile | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2016/12/18 01:20:51 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * mcsfile/args.c -- mcsfile command-line arguments parsing utility. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #define Q(x) #x diff --git a/src/mcsfile/main.c b/src/mcsfile/main.c index c938723..3b1ac1c 100644 --- a/src/mcsfile/main.c +++ b/src/mcsfile/main.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* main.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: mcsfile | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2016/12/18 01:19:25 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * mcsfile/main.c -- mcsfile main source. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/mcsfile/main.h b/src/mcsfile/main.h index 64fc6eb..35d4aa6 100644 --- a/src/mcsfile/main.h +++ b/src/mcsfile/main.h @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* main.h |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: mcsfile | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2016/12/18 01:33:41 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * mcsfile/main.h -- mcsfile main header. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # include diff --git a/src/mcsfile/print.c b/src/mcsfile/print.c index e348c8b..0379322 100644 --- a/src/mcsfile/print.c +++ b/src/mcsfile/print.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* line.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: mcsfile | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2016/12/18 01:43:52 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * mcsfile/print.c -- mcsfile directory printing utilities. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7/args.c b/src/p7/args.c index 5905852..ca048aa 100644 --- a/src/p7/args.c +++ b/src/p7/args.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7/args.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7/args.c -- p7 command-line argument parsing. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7/dump.c b/src/p7/dump.c index 4ba3c00..5d5234f 100644 --- a/src/p7/dump.c +++ b/src/p7/dump.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7/dump.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7/dump.c -- p7 information dumping utility. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7/list_devices.c b/src/p7/list_devices.c index 57f977f..8d4c315 100644 --- a/src/p7/list_devices.c +++ b/src/p7/list_devices.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7/list_devices.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: libp7 | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/02/09 17:55:40 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7/list_devices.c -- p7 device listing functions. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" /** diff --git a/src/p7/main.c b/src/p7/main.c index 77dcc72..1951190 100644 --- a/src/p7/main.c +++ b/src/p7/main.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7/main.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7/main.c -- p7 main source. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7/main.h b/src/p7/main.h index f4470d9..1a72606 100644 --- a/src/p7/main.h +++ b/src/p7/main.h @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7/main.h |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7/main.h -- p7 main header. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # define Q(x) #x diff --git a/src/p7os/args.c b/src/p7os/args.c index 6e439c2..5a45f4c 100644 --- a/src/p7os/args.c +++ b/src/p7os/args.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7os/args.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7os/args.c -- p7os command-line arguments parsing utility. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7os/main.c b/src/p7os/main.c index 840a600..7774cf9 100644 --- a/src/p7os/main.c +++ b/src/p7os/main.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7os/main.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:54 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7os/main.c -- p7os main source. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include diff --git a/src/p7os/main.h b/src/p7os/main.h index eaff213..1158510 100644 --- a/src/p7os/main.h +++ b/src/p7os/main.h @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7os/main.h |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:55 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7os/main.h -- p7os main header. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # include diff --git a/src/p7os/prepare.c b/src/p7os/prepare.c index 7160d12..e0a2566 100644 --- a/src/p7os/prepare.c +++ b/src/p7os/prepare.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7os/prepare.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:56:41 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7os/prepare.c -- p7os update.exe uploading utility. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" /* ************************************************************************** */ diff --git a/src/p7screen/args.c b/src/p7screen/args.c index b2f9e53..6c9820c 100644 --- a/src/p7screen/args.c +++ b/src/p7screen/args.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7screen/args.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:55 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7screen/args.c -- p7screen argument parsing. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7screen/main.c b/src/p7screen/main.c index ae8b7e2..c082815 100644 --- a/src/p7screen/main.c +++ b/src/p7screen/main.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7screen/main.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:55 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7screen/main.c -- p7screen main source. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7screen/main.h b/src/p7screen/main.h index ccbed2d..88049f1 100644 --- a/src/p7screen/main.h +++ b/src/p7screen/main.h @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* p7screen/main.h |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7utils | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/16 23:55:55 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7screen/main.h -- p7screen main header. + * Copyright (C) 2016-2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # include diff --git a/src/p7servtest/args.c b/src/p7servtest/args.c index 9b99549..3bdb651 100644 --- a/src/p7servtest/args.c +++ b/src/p7servtest/args.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* args.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7test | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/13 00:52:20 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7servtest/args.c -- p7servtest command-line argument parsing utility. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #define Q(x) #x diff --git a/src/p7servtest/client.c b/src/p7servtest/client.c index 62a1325..0ae7d16 100644 --- a/src/p7servtest/client.c +++ b/src/p7servtest/client.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* client.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7test | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/13 01:40:23 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7servtest/client.c -- p7servtest virtual client. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7servtest/main.c b/src/p7servtest/main.c index 1966af0..5b67930 100644 --- a/src/p7servtest/main.c +++ b/src/p7servtest/main.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* main.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7test | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/13 00:52:18 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7servtest/main.c -- p7servtest main source. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include diff --git a/src/p7servtest/main.h b/src/p7servtest/main.h index 468e83e..a37c6bf 100644 --- a/src/p7servtest/main.h +++ b/src/p7servtest/main.h @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* main.h |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7test | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/13 01:42:22 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7servtest/main.h -- p7servtest main header. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # include diff --git a/src/p7servtest/server.c b/src/p7servtest/server.c index ad20f84..45a6925 100644 --- a/src/p7servtest/server.c +++ b/src/p7servtest/server.c @@ -1,12 +1,21 @@ -/* ************************************************************************** */ -/* _____ _ */ -/* server.c |_ _|__ _ _| |__ ___ _ _ */ -/* | Project: p7test | |/ _ \| | | | '_ \ / _ \ | | | */ -/* | | (_) | |_| | | | | __/ |_| | */ -/* By: thomas |_|\___/ \__,_|_| |_|\___|\__, |.fr */ -/* Last updated: 2017/01/13 01:04:05 |___/ */ -/* */ -/* ************************************************************************** */ +/* ***************************************************************************** + * p7servtest/server.c -- p7servtest virtual server. + * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey + * + * This file is part of p7utils. + * p7utils 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 2.0 of the License, + * or (at your option) any later version. + * + * p7utils 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with p7utils; if not, see . + * ************************************************************************** */ #include "main.h" #include #include