diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-04 23:23:19 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-04 23:23:19 +0200 |
| commit | ca530eb3a2b65dbc7716e557752c87e36aa1879d (patch) | |
| tree | 74542f954784ccea6d759639309a8f19e19ac57e | |
| parent | a8efdc34834ecc592a79719ccf9fbef76768898b (diff) | |
Remove license headers
| -rw-r--r-- | src/calc_data.c | 16 | ||||
| -rw-r--r-- | src/calc_data.h | 16 | ||||
| -rw-r--r-- | src/calculer.c | 17 | ||||
| -rw-r--r-- | src/cli.c | 17 | ||||
| -rw-r--r-- | src/disp.c | 17 | ||||
| -rw-r--r-- | src/disp.h | 16 | ||||
| -rw-r--r-- | src/input.c | 16 | ||||
| -rw-r--r-- | src/input.h | 16 | ||||
| -rw-r--r-- | src/ray.c | 17 | ||||
| -rw-r--r-- | src/tui.c | 16 |
10 files changed, 0 insertions, 164 deletions
diff --git a/src/calc_data.c b/src/calc_data.c index ee4e1df..fa22cf7 100644 --- a/src/calc_data.c +++ b/src/calc_data.c @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #include "calc_data.h" int diff --git a/src/calc_data.h b/src/calc_data.h index 871a249..673835d 100644 --- a/src/calc_data.h +++ b/src/calc_data.h @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #ifndef CALC_DATA_H #define CALC_DATA_H diff --git a/src/calculer.c b/src/calculer.c index a3512d0..7b5b7db 100644 --- a/src/calculer.c +++ b/src/calculer.c @@ -1,20 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - #include <assert.h> #include <limits.h> #include <stdint.h> @@ -1,20 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - #include <stdlib.h> #include <stdio.h> #include <limits.h> @@ -1,20 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - #include <dlfcn.h> #include <limits.h> #include <string.h> @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #ifndef DISP_H #define DISP_H diff --git a/src/input.c b/src/input.c index 7710723..63de291 100644 --- a/src/input.c +++ b/src/input.c @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #include "input.h" int diff --git a/src/input.h b/src/input.h index 2df0db5..0c30f0e 100644 --- a/src/input.h +++ b/src/input.h @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #ifndef INPUT_H #define INPUT_H @@ -1,20 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - #include <raylib.h> #include <stdbool.h> #include <stdio.h> @@ -1,19 +1,3 @@ -/* - * Copyright (C) 2024 Tristan Riehs - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ #include <curses.h> #include <stdio.h> #include <stdlib.h> |
