diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-10-31 23:41:32 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-10-31 23:41:32 -0400 |
| commit | 06a02a3a50baf261a0f1c998bfd02269c3ed45de (patch) | |
| tree | 00aa66e09a31b2563221c385e5ac129a57082729 /include/config.h | |
| download | hush-06a02a3a50baf261a0f1c998bfd02269c3ed45de.tar.gz | |
Initial commit
Diffstat (limited to 'include/config.h')
| -rw-r--r-- | include/config.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h new file mode 100644 index 0000000..789a1bb --- /dev/null +++ b/include/config.h @@ -0,0 +1,12 @@ +/* + * + */ +#ifndef H_HUSH_CONFIG +#define H_HUSH_CONFIG + +#include <stdlib.h> + +static const size_t MAX_LINE_LEN = 1024; +#define MAX_ARGUMENT_CNT 8 + +#endif |