diff options
author | Werner Almesberger <werner@almesberger.net> | 2016-08-02 11:00:08 -0300 |
---|---|---|
committer | Werner Almesberger <werner@almesberger.net> | 2016-08-02 11:00:08 -0300 |
commit | 8745b40e3eb216fc5cfa7373fea3b4ae991f1c3e (patch) | |
tree | eab2aa7ec1941bd3da99f1dbcf64eab04d34667a /main.h | |
download | eeshow-8745b40e3eb216fc5cfa7373fea3b4ae991f1c3e.tar.gz eeshow-8745b40e3eb216fc5cfa7373fea3b4ae991f1c3e.tar.bz2 eeshow-8745b40e3eb216fc5cfa7373fea3b4ae991f1c3e.zip |
rename sch2fig to eeshow
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +/* + * main.h - Convert Eeschema schematics to FIG + * + * Written 2016 by Werner Almesberger + * Copyright 2016 by Werner Almesberger + * + * 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. + */ + +#ifndef MAIN_H +#define MAIN_H + +#include <stdbool.h> + + +/* + * 0: no progress indications + * 1: reasonable progress indications + * 2: verbose output + * > 2: go wild ! + */ + +extern int verbose; + + +void usage(const char *name); + +#endif /* !MAIN_H */ |