aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-colour-ciexyz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blind-colour-ciexyz.c')
-rw-r--r--src/blind-colour-ciexyz.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/blind-colour-ciexyz.c b/src/blind-colour-ciexyz.c
new file mode 100644
index 0000000..018ef54
--- /dev/null
+++ b/src/blind-colour-ciexyz.c
@@ -0,0 +1,23 @@
+/* See LICENSE file for copyright and license details. */
+#include "util.h"
+
+USAGE("(X Y Z | Y)")
+
+int
+main(int argc, char *argv[])
+{
+ ARGBEGIN {
+ default:
+ usage();
+ } ARGEND;
+
+ if (argc == 1)
+ printf("%s\n", argv[0]);
+ else if (argc == 3)
+ printf("%s %s %s\n", argv[0], argv[1], argv[2]);
+ else
+ usage();
+
+ efshut(stdout, "<stdout>");
+ return 0;
+}