diff options
author | PA4WDH | 2023-05-21 14:45:18 +0200 |
---|---|---|
committer | PA4WDH | 2023-05-21 14:45:18 +0200 |
commit | f282d50f98c5b26afd69acdafd650a7e8fc570b4 (patch) | |
tree | 44de5e4130ac4f5ce937695cd95ebbfc4f126161 /argparse.h | |
parent | Fix all .h files (diff) | |
download | cputemp2maxfreq-f282d50f98c5b26afd69acdafd650a7e8fc570b4.tar.gz cputemp2maxfreq-f282d50f98c5b26afd69acdafd650a7e8fc570b4.tar.bz2 cputemp2maxfreq-f282d50f98c5b26afd69acdafd650a7e8fc570b4.zip |
Add argument parsing and validation
Diffstat (limited to 'argparse.h')
-rw-r--r-- | argparse.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/argparse.h b/argparse.h new file mode 100644 index 0000000..5d643c1 --- /dev/null +++ b/argparse.h @@ -0,0 +1,6 @@ +#ifndef HAVE_ARGPARSE_H +#define HAVE_ARGPARSE_H + +void argparse(int argc, char **argv); + +#endif |