diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-11-24 17:37:46 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-11-24 17:37:46 -0500 |
| commit | 7fc936943d5c5dd58ba2767a87d59101061d32ac (patch) | |
| tree | b0855b17766f0e5a7bcac78674e1189890207e4c | |
| parent | 3548661f21b658b2fa66e30d835f1ba252d4ee6b (diff) | |
| download | unalf-7fc936943d5c5dd58ba2767a87d59101061d32ac.tar.gz | |
Clean up unalf.h slightly.
| -rw-r--r-- | src/unalf.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/unalf.h b/src/unalf.h index 6096101..cab319f 100644 --- a/src/unalf.h +++ b/src/unalf.h @@ -84,13 +84,12 @@ typedef struct { int overwrite; int extract_to_stdout; int quiet; - char *exclude_glob; int verbose_list; } opts_t; +#define MAX_EXCLUDES 256 + extern opts_t opts; -extern const char *exclude_globs[256]; +extern const char *exclude_globs[MAX_EXCLUDES]; extern char * const *include_globs; extern int exclude_count; - -#define MAX_EXCLUDES 256 |
