-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stest: get rid of getopt, use suckless arg.h
... also some style improvements.
- Loading branch information
Showing
3 changed files
with
141 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copy me if you can. | ||
* by 20h | ||
*/ | ||
|
||
#ifndef ARG_H__ | ||
#define ARG_H__ | ||
|
||
extern char *argv0; | ||
|
||
/* use main(int argc, char *argv[]) */ | ||
#define ARGBEGIN for (argv0 = *argv, argv++, argc--;\ | ||
argv[0] && argv[0][1]\ | ||
&& argv[0][0] == '-';\ | ||
argc--, argv++) {\ | ||
char argc_;\ | ||
char **argv_;\ | ||
int brk_;\ | ||
if (argv[0][1] == '-' && argv[0][2] == '\0') {\ | ||
argv++;\ | ||
argc--;\ | ||
break;\ | ||
}\ | ||
for (brk_ = 0, argv[0]++, argv_ = argv;\ | ||
argv[0][0] && !brk_;\ | ||
argv[0]++) {\ | ||
if (argv_ != argv)\ | ||
break;\ | ||
argc_ = argv[0][0];\ | ||
switch (argc_) | ||
|
||
/* Handles obsolete -NUM syntax */ | ||
#define ARGNUM case '0':\ | ||
case '1':\ | ||
case '2':\ | ||
case '3':\ | ||
case '4':\ | ||
case '5':\ | ||
case '6':\ | ||
case '7':\ | ||
case '8':\ | ||
case '9' | ||
|
||
#define ARGEND }\ | ||
} | ||
|
||
#define ARGC() argc_ | ||
|
||
#define ARGNUMF(base) (brk_ = 1, estrtol(argv[0], (base))) | ||
|
||
#define EARGF(x) ((argv[0][1] == '\0' && argv[1] == NULL)?\ | ||
((x), abort(), (char *)0) :\ | ||
(brk_ = 1, (argv[0][1] != '\0')?\ | ||
(&argv[0][1]) :\ | ||
(argc--, argv++, argv[0]))) | ||
|
||
#define ARGF() ((argv[0][1] == '\0' && argv[1] == NULL)?\ | ||
(char *)0 :\ | ||
(brk_ = 1, (argv[0][1] != '\0')?\ | ||
(&argv[0][1]) :\ | ||
(argc--, argv++, argv[0]))) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters