diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-25 22:47:46 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-25 22:47:46 +0200 |
| commit | cc3cf3353f23dd2f87412d42f8c3d52f873711dd (patch) | |
| tree | 94336a9ccee6451baeca51abff53da7e7e9c6230 /src/main.c | |
| parent | bb261ad231c3683a36d516c4caf9b2a06ce0145f (diff) | |
| download | ek-cc3cf3353f23dd2f87412d42f8c3d52f873711dd.tar.gz ek-cc3cf3353f23dd2f87412d42f8c3d52f873711dd.zip | |
add formatter
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ + #include <stdlib.h> #include <stdio.h> #include <unistd.h> @@ -7,13 +9,13 @@ #include <cu/compiler.h> static const char *cmdline_usage = -"Copper compiler usage:\n" -" cu [-I <dir>...] [-D <var>...] infile...\n" -" -h Show usage (this)\n" -" -I <dir> Add directory to import path\n" -" -D <var> Add predefined variable\n" -" -o Name of output\n" -" infile Top file(s) to compile\n" + "Copper compiler usage:\n" + " cu [-I <dir>...] [-D <var>...] infile...\n" + " -h Show usage (this)\n" + " -I <dir> Add directory to import path\n" + " -D <var> Add predefined variable\n" + " -o Name of output\n" + " infile Top file(s) to compile\n" ; static void usage() |
