1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* ISC license. */
#include <string.h>
#include <skalibs/gol.h>
#include <skalibs/strerr.h>
unsigned int gol_argv (int argc, char const *const *argv, gol_bool const *b, unsigned int bn, gol_arg const *a, unsigned int an, uint64_t *br, char const **ar)
{
int problem = 0 ;
int r ;
if (!argc) strerr_diefu1x(100, "gol: invalid argv") ;
if (argc == 1) return 1 ;
r = gol(argv + 1, argc - 1, b, bn, a, an, br, ar, &problem) ;
if (r < 0)
{
if (problem > 0)
{
char s[2] = { argv[-r][problem], 0 } ;
strerr_dief4x(100, "unrecognized ", "short ", "option: ", s) ;
}
else if (!problem)
strerr_dief3x(100, "invalid ", "option: ", argv[-r]) ;
else if (problem == -1)
strerr_dief4x(100, "unrecognized ", "boolean ", "option: ", argv[-r]) ;
else
strerr_dief3x(100, "unrecognized ", "option with argument: ", argv[-r]) ;
}
else return r + 1 ;
}
|