aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--arg.h (renamed from src/arg.h)0
-rw-r--r--cg-base.c (renamed from src/cg-base.c)19
-rw-r--r--cg-base.h (renamed from src/cg-base.h)19
-rw-r--r--cg-brilliance.c (renamed from src/cg-brilliance.c)19
-rw-r--r--cg-darkroom.c (renamed from src/cg-darkroom.c)19
-rw-r--r--cg-gamma.c (renamed from src/cg-gamma.c)19
-rw-r--r--cg-icc.c (renamed from src/cg-icc.c)19
-rw-r--r--cg-limits.c (renamed from src/cg-limits.c)19
-rw-r--r--cg-linear.c (renamed from src/cg-linear.c)19
-rw-r--r--cg-negative.c (renamed from src/cg-negative.c)19
-rw-r--r--cg-query.c (renamed from src/cg-query.c)19
-rw-r--r--cg-rainbow.c (renamed from src/cg-rainbow.c)19
-rw-r--r--cg-remove.c (renamed from src/cg-remove.c)19
-rw-r--r--cg-shallow.c (renamed from src/cg-shallow.c)19
-rw-r--r--cg-sleepmode.c (renamed from src/cg-sleepmode.c)19
15 files changed, 14 insertions, 252 deletions
diff --git a/src/arg.h b/arg.h
index 0b23c53..0b23c53 100644
--- a/src/arg.h
+++ b/arg.h
diff --git a/src/cg-base.c b/cg-base.c
index 9f77937..33d9c4d 100644
--- a/src/cg-base.c
+++ b/cg-base.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -924,4 +908,3 @@ LIST_DEPTHS
}
goto done;
}
-
diff --git a/src/cg-base.h b/cg-base.h
index cd885e7..a9ef65c 100644
--- a/src/cg-base.h
+++ b/cg-base.h
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include <libcoopgamma.h>
#include <inttypes.h>
@@ -251,4 +235,3 @@ extern int handle_args(int argc, char* argv[], char* prio);
* -3: Error, message already printed
*/
extern int start(void);
-
diff --git a/src/cg-brilliance.c b/cg-brilliance.c
index 3541d03..8ed3124 100644
--- a/src/cg-brilliance.c
+++ b/cg-brilliance.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -310,4 +294,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-
diff --git a/src/cg-darkroom.c b/cg-darkroom.c
index 9990aa3..b9b79f1 100644
--- a/src/cg-darkroom.c
+++ b/cg-darkroom.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -313,4 +297,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-
diff --git a/src/cg-gamma.c b/cg-gamma.c
index 1d24d07..cc625bd 100644
--- a/src/cg-gamma.c
+++ b/cg-gamma.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -538,4 +522,3 @@ int start(void)
if (pause() < 0)
return cleanup(-1);
}
-
diff --git a/src/cg-icc.c b/cg-icc.c
index 5970930..61bcdb6 100644
--- a/src/cg-icc.c
+++ b/cg-icc.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -942,4 +926,3 @@ int start(void)
if (pause() < 0)
return cleanup(-1);
}
-
diff --git a/src/cg-limits.c b/cg-limits.c
index 8390385..896505f 100644
--- a/src/cg-limits.c
+++ b/cg-limits.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -728,4 +712,3 @@ int start(void)
if (pause() < 0)
return cleanup(-1);
}
-
diff --git a/src/cg-linear.c b/cg-linear.c
index 1ce9a5d..554478e 100644
--- a/src/cg-linear.c
+++ b/cg-linear.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -277,4 +261,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-
diff --git a/src/cg-negative.c b/cg-negative.c
index 8a98959..be5f2a0 100644
--- a/src/cg-negative.c
+++ b/cg-negative.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -252,4 +236,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-
diff --git a/src/cg-query.c b/cg-query.c
index a24ef11..8532599 100644
--- a/src/cg-query.c
+++ b/cg-query.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "arg.h"
#include <libcoopgamma.h>
@@ -511,4 +495,3 @@ int main(int argc, char* argv[])
}
goto done;
}
-
diff --git a/src/cg-rainbow.c b/cg-rainbow.c
index 067785f..4cf4797 100644
--- a/src/cg-rainbow.c
+++ b/cg-rainbow.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -276,4 +260,3 @@ int start(void)
sched_yield();
}
}
-
diff --git a/src/cg-remove.c b/cg-remove.c
index d942f87..0e81df0 100644
--- a/src/cg-remove.c
+++ b/cg-remove.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "arg.h"
#include <libcoopgamma.h>
@@ -400,4 +384,3 @@ int main(int argc, char* argv[])
}
goto done;
}
-
diff --git a/src/cg-shallow.c b/cg-shallow.c
index 230da88..5b65364 100644
--- a/src/cg-shallow.c
+++ b/cg-shallow.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -276,4 +260,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-
diff --git a/src/cg-sleepmode.c b/cg-sleepmode.c
index 3248d58..67b5570 100644
--- a/src/cg-sleepmode.c
+++ b/cg-sleepmode.c
@@ -1,20 +1,4 @@
-/**
- * cg-tools -- Cooperative gamma-enabled tools
- * Copyright (C) 2016, 2018 Mattias Andrée (maandree@kth.se)
- *
- * 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/>.
- */
+/* See LICENSE file for copyright and license details. */
#include "cg-base.h"
#include <libclut.h>
@@ -457,4 +441,3 @@ int start(void)
if (pause() < 0)
return -1;
}
-