Searched refs:optv (Results 1 - 3 of 3) sorted by relevance

/haiku-buildtools/jam/
H A Doption.c27 option *optv )
32 memset( (char *)optv, '\0', sizeof( *optv ) * N_OPTS );
61 optv->flag = *f;
65 optv++->val = "true";
69 optv++->val = &arg[1];
74 optv++->val = argv[i];
94 option *optv,
100 for( i = 0; i < N_OPTS; i++, optv++ )
101 if( optv
93 getoptval( option *optv, char opt, int subopt ) argument
[all...]
H A Doption.h24 int getoptions( int argc, char **argv, const char *opts, option *optv );
25 const char * getoptval( option *optv, char opt, int subopt );
H A Djam.c174 struct option optv[N_OPTS]; local
185 if( ( n = getoptions( argc, argv, "d:j:f:gs:t:ano:qv", optv ) ) < 0 )
212 if( ( s = getoptval( optv, 'v', 0 ) ) )
222 if( ( s = getoptval( optv, 'n', 0 ) ) )
225 if( ( s = getoptval( optv, 'q', 0 ) ) )
228 if( ( s = getoptval( optv, 'a', 0 ) ) )
231 if( ( s = getoptval( optv, 'j', 0 ) ) )
237 if( ( s = getoptval( optv, 'g', 0 ) ) )
242 for( n = 0; s = getoptval( optv, 'd', n ); n++ )
348 for( n = 0; s = getoptval( optv, '
[all...]

Completed in 44 milliseconds