diff --git a/src/core/error.h b/src/core/error.h index e12e462..3d2042a 100644 --- a/src/core/error.h +++ b/src/core/error.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __ERROR_H__ #define __ERROR_H__ diff --git a/src/core/system.c b/src/core/system.c index 65ec792..77ec324 100644 --- a/src/core/system.c +++ b/src/core/system.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "system.h" #include "error.h" diff --git a/src/core/system.h b/src/core/system.h index a904c69..fe8484d 100644 --- a/src/core/system.h +++ b/src/core/system.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SYSTEM_H__ #define __SYSTEM_H__ diff --git a/src/core/type.h b/src/core/type.h index b845cc6..047d837 100644 --- a/src/core/type.h +++ b/src/core/type.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __TYPE_H__ #define __TYPE_H__ diff --git a/src/entity/earth.c b/src/entity/earth.c index 989b337..3135f6a 100644 --- a/src/entity/earth.c +++ b/src/entity/earth.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "earth.h" #include diff --git a/src/entity/earth.h b/src/entity/earth.h index 18d025b..397a50a 100644 --- a/src/entity/earth.h +++ b/src/entity/earth.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __EARTH_H__ #define __EARTH_H__ diff --git a/src/entity/entity.c b/src/entity/entity.c index 06a21be..678a84e 100644 --- a/src/entity/entity.c +++ b/src/entity/entity.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "entity.h" #include "earth.h" diff --git a/src/entity/entity.h b/src/entity/entity.h index 444ddc5..3e0c9e4 100644 --- a/src/entity/entity.h +++ b/src/entity/entity.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __ENTITY_H__ #define __ENTITY_H__ diff --git a/src/entity/satellite.c b/src/entity/satellite.c index 37893e7..8d9fe87 100644 --- a/src/entity/satellite.c +++ b/src/entity/satellite.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "satellite.h" #include "hashmap.h" diff --git a/src/entity/satellite.h b/src/entity/satellite.h index e5e616b..a72a685 100644 --- a/src/entity/satellite.h +++ b/src/entity/satellite.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SATELLITE_H__ #define __SATELLITE_H__ diff --git a/src/entity/sky.c b/src/entity/sky.c index d4d9abe..132b305 100644 --- a/src/entity/sky.c +++ b/src/entity/sky.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "sky.h" #include diff --git a/src/entity/sky.h b/src/entity/sky.h index 770e55d..d195f0d 100644 --- a/src/entity/sky.h +++ b/src/entity/sky.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SKY_H__ #define __SKY_H__ diff --git a/src/gfx/bo.c b/src/gfx/bo.c index 8b69270..686ac4b 100644 --- a/src/gfx/bo.c +++ b/src/gfx/bo.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "bo.h" void bo_init(struct BO *bo, GLint type, gboolean dynamic) diff --git a/src/gfx/bo.h b/src/gfx/bo.h index d421cd4..9f644ba 100644 --- a/src/gfx/bo.h +++ b/src/gfx/bo.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __BO_H__ #define __BO_H__ diff --git a/src/gfx/camera.c b/src/gfx/camera.c index bb5af1c..0c641f0 100644 --- a/src/gfx/camera.c +++ b/src/gfx/camera.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "camera.h" #include diff --git a/src/gfx/camera.h b/src/gfx/camera.h index d391057..1673515 100644 --- a/src/gfx/camera.h +++ b/src/gfx/camera.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __CAMERA_H__ #define __CAMERA_H__ diff --git a/src/gfx/error_gfx.c b/src/gfx/error_gfx.c index c92c223..12175c1 100644 --- a/src/gfx/error_gfx.c +++ b/src/gfx/error_gfx.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "error_gfx.h" char gfx_info_log[512]; diff --git a/src/gfx/error_gfx.h b/src/gfx/error_gfx.h index 71b39d9..e643c4a 100644 --- a/src/gfx/error_gfx.h +++ b/src/gfx/error_gfx.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __ERROR_GFX_H__ #define __ERROR_GFX_H__ diff --git a/src/gfx/gfx.c b/src/gfx/gfx.c index 78ad9ac..4013ec8 100644 --- a/src/gfx/gfx.c +++ b/src/gfx/gfx.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "gfx.h" #include "camera.h" diff --git a/src/gfx/gfx.h b/src/gfx/gfx.h index 8130c37..6146aff 100644 --- a/src/gfx/gfx.h +++ b/src/gfx/gfx.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __GFX_H__ #define __GFX_H__ diff --git a/src/gfx/idx_obj.c b/src/gfx/idx_obj.c index 23ea116..eb9c665 100644 --- a/src/gfx/idx_obj.c +++ b/src/gfx/idx_obj.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "idx_obj.h" void idx_obj_init(struct IdxObj *idx_obj) diff --git a/src/gfx/idx_obj.h b/src/gfx/idx_obj.h index 2288b17..cedc887 100644 --- a/src/gfx/idx_obj.h +++ b/src/gfx/idx_obj.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __IDX_OBJ_H__ #define __IDX_OBJ_H__ diff --git a/src/gfx/render.c b/src/gfx/render.c index f7c3a1f..848fc71 100644 --- a/src/gfx/render.c +++ b/src/gfx/render.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "render.h" #include "bo.h" diff --git a/src/gfx/render.h b/src/gfx/render.h index 37e3754..81d3c3c 100644 --- a/src/gfx/render.h +++ b/src/gfx/render.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __RENDER_H__ #define __RENDER_H__ diff --git a/src/gfx/shader.c b/src/gfx/shader.c index d2ade32..1068d35 100644 --- a/src/gfx/shader.c +++ b/src/gfx/shader.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "shader.h" #include diff --git a/src/gfx/shader.h b/src/gfx/shader.h index 02241af..3cf257c 100644 --- a/src/gfx/shader.h +++ b/src/gfx/shader.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SHADER_H__ #define __SHADER_H__ diff --git a/src/gfx/texture.c b/src/gfx/texture.c index 5b07a80..4b51cc6 100644 --- a/src/gfx/texture.c +++ b/src/gfx/texture.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "texture.h" #include "stb_image.h" diff --git a/src/gfx/texture.h b/src/gfx/texture.h index 0ece1f4..7bf6895 100644 --- a/src/gfx/texture.h +++ b/src/gfx/texture.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __TEXTURE_H__ #define __TEXTURE_H__ diff --git a/src/gfx/vao.c b/src/gfx/vao.c index 21e333d..4e0fbec 100644 --- a/src/gfx/vao.c +++ b/src/gfx/vao.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "vao.h" void vao_init(struct VAO *vao) diff --git a/src/gfx/vao.h b/src/gfx/vao.h index 3b8d598..e4daf66 100644 --- a/src/gfx/vao.h +++ b/src/gfx/vao.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __VAO_H__ #define __VAO_H__ diff --git a/src/main.c b/src/main.c index 3e6e14e..a054cd7 100644 --- a/src/main.c +++ b/src/main.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "download.h" #include "entity.h" #include "phys.h" diff --git a/src/phys/phys.c b/src/phys/phys.c index 383ffb2..265ddb2 100644 --- a/src/phys/phys.c +++ b/src/phys/phys.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "phys.h" #include "SGP4.h" diff --git a/src/phys/phys.h b/src/phys/phys.h index 687a27d..95eb417 100644 --- a/src/phys/phys.h +++ b/src/phys/phys.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __PHYS_H__ #define __PHYS_H__ diff --git a/src/ui/catalog.c b/src/ui/catalog.c index d79a721..0dfc33e 100644 --- a/src/ui/catalog.c +++ b/src/ui/catalog.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "catalog.h" #include "filter.h" diff --git a/src/ui/catalog.h b/src/ui/catalog.h index 0c3fc6e..7b0bb8e 100644 --- a/src/ui/catalog.h +++ b/src/ui/catalog.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __CATALOG_H__ #define __CATALOG_H__ diff --git a/src/ui/filter.c b/src/ui/filter.c index e6d8f2f..f92567d 100644 --- a/src/ui/filter.c +++ b/src/ui/filter.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "filter.h" #include "catalog.h" diff --git a/src/ui/filter.h b/src/ui/filter.h index 20308cf..d43206d 100644 --- a/src/ui/filter.h +++ b/src/ui/filter.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __FILTER_H__ #define __FILTER_H__ diff --git a/src/ui/info.c b/src/ui/info.c index 04acfc9..b1b34de 100644 --- a/src/ui/info.c +++ b/src/ui/info.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "info.h" #include "phys.h" diff --git a/src/ui/info.h b/src/ui/info.h index 7b37e85..e168982 100644 --- a/src/ui/info.h +++ b/src/ui/info.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __INFO_H__ #define __INFO_H__ diff --git a/src/ui/input.c b/src/ui/input.c index 30c9ad3..9edafa1 100644 --- a/src/ui/input.c +++ b/src/ui/input.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "input.h" #include "camera.h" diff --git a/src/ui/input.h b/src/ui/input.h index aab2f5b..060ddd4 100644 --- a/src/ui/input.h +++ b/src/ui/input.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __INPUT_H__ #define __INPUT_H__ diff --git a/src/ui/perf.c b/src/ui/perf.c index 9bd25c7..d906321 100644 --- a/src/ui/perf.c +++ b/src/ui/perf.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "perf.h" #include "satellite.h" diff --git a/src/ui/perf.h b/src/ui/perf.h index 91682a5..eb545b1 100644 --- a/src/ui/perf.h +++ b/src/ui/perf.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __PERF_H__ #define __PERF_H__ diff --git a/src/ui/setting.c b/src/ui/setting.c index 3702f18..82afb35 100644 --- a/src/ui/setting.c +++ b/src/ui/setting.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "setting.h" #include "perf.h" diff --git a/src/ui/setting.h b/src/ui/setting.h index 1902b9e..4aba140 100644 --- a/src/ui/setting.h +++ b/src/ui/setting.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SETTING_H__ #define __SETTING_H__ diff --git a/src/ui/status.c b/src/ui/status.c index 10962c2..231cc77 100644 --- a/src/ui/status.c +++ b/src/ui/status.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "status.h" static GtkStatusbar *statusbar; diff --git a/src/ui/status.h b/src/ui/status.h index ecaf619..8baa7ff 100644 --- a/src/ui/status.h +++ b/src/ui/status.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __STATUS_H__ #define __STATUS_H__ diff --git a/src/ui/timemgr.c b/src/ui/timemgr.c index cc4e37d..24ad465 100644 --- a/src/ui/timemgr.c +++ b/src/ui/timemgr.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "timemgr.h" #include "phys.h" diff --git a/src/ui/timemgr.h b/src/ui/timemgr.h index 906ab2b..7d5b1ff 100644 --- a/src/ui/timemgr.h +++ b/src/ui/timemgr.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __TIMEMGR_H__ #define __TIMEMGR_H__ diff --git a/src/ui/ui.c b/src/ui/ui.c index f5e25f2..aa35419 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "ui.h" #include "catalog.h" diff --git a/src/ui/ui.h b/src/ui/ui.h index bc64c47..48d4f37 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __UI_H__ #define __UI_H__ diff --git a/src/util/download.c b/src/util/download.c index aca51dd..b6d8475 100644 --- a/src/util/download.c +++ b/src/util/download.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "download.h" #include "error.h" diff --git a/src/util/download.h b/src/util/download.h index 68fe4f3..0d13e62 100644 --- a/src/util/download.h +++ b/src/util/download.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __DOWNLOAD_H__ #define __DOWNLOAD_H__ diff --git a/src/util/icosphere.c b/src/util/icosphere.c index 00ae5d6..dd78e87 100644 --- a/src/util/icosphere.c +++ b/src/util/icosphere.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "icosphere.h" #include "hashmap.h" diff --git a/src/util/icosphere.h b/src/util/icosphere.h index d3dadd0..1983146 100644 --- a/src/util/icosphere.h +++ b/src/util/icosphere.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __ICOSPHERE_H__ #define __ICOSPHERE_H__ diff --git a/src/util/model.c b/src/util/model.c index 8ac55b3..309c0c4 100644 --- a/src/util/model.c +++ b/src/util/model.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "model.h" void model_init(struct Model *model, struct IdxObj *obj) diff --git a/src/util/model.h b/src/util/model.h index 9ad975b..9dcc419 100644 --- a/src/util/model.h +++ b/src/util/model.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __MODEL_H__ #define __MODEL_H__ diff --git a/src/util/satcat_code_list.c b/src/util/satcat_code_list.c index ae66c84..46b52b2 100644 --- a/src/util/satcat_code_list.c +++ b/src/util/satcat_code_list.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "satcat_code_list.h" /* Generated using: diff --git a/src/util/satcat_code_list.h b/src/util/satcat_code_list.h index 1c8ba81..10d3c22 100644 --- a/src/util/satcat_code_list.h +++ b/src/util/satcat_code_list.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __SATCAT_CODE_LIST_H__ #define __SATCAT_CODE_LIST_H__ diff --git a/src/util/thread.c b/src/util/thread.c index 05f147a..40bb1ab 100644 --- a/src/util/thread.c +++ b/src/util/thread.c @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #include "thread.h" #include "error.h" diff --git a/src/util/thread.h b/src/util/thread.h index eab4813..ed40662 100644 --- a/src/util/thread.h +++ b/src/util/thread.h @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2022 Wojciech Graj + * + * 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 2 + * 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. + **/ + #ifndef __THREAD_H__ #define __THREAD_H__