X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=psi.d%2Fgetopt.psi;h=962ac970fb74ae66f126d2a78c554fec1ccb3c0d;hp=5f5bae6fcb67d6ac3224e55b94837d8b6589a502;hb=09529efcde471127419e141807b83b37077003a0;hpb=a107dfcca2dfd0fc5a2779a8d679f778cb8f3290 diff --git a/psi.d/getopt.psi b/psi.d/getopt.psi index 5f5bae6..962ac97 100644 --- a/psi.d/getopt.psi +++ b/psi.d/getopt.psi @@ -1,24 +1,40 @@ -function psi\opterr() : int { - return to_int(opterr); +#include + +function psi\opterr(int $value) : void { + let opterr = intval($value); + return opterr_set(opterr) as void(opterr_set); +} +function psi\optind\get() : int { + return optind_get() as to_int(optind_get); } -function psi\optind() : int { - return to_int(optind); +function psi\optind\set(int $v) : void { + let optind = intval($v); + return optind_set(optind) as void(optind_set); } function psi\optopt() : int { - return to_int(optopt); + return optopt_get() as to_int(optopt_get); } function psi\optarg() : string { - return to_string(optarg); + return optarg_get() as to_string(optarg_get); +} + +#ifdef _OPTRESET +function psi\optreset() : void { + let _v = 1; + return optreset_set(_v) as void(optreset_set); } +#endif -function psi\getopt(array &$argv, string $options) : int { +static function psi\getopt(array &$argv, string $options) : int { let argc = count($argv); let argv = &arrval($argv, *argv = strval($argv) ); let optstring = strval($options); - return to_int(getopt); - set $argv = to_array(argv, - to_string(argv) + return getopt(argc, argv, optstring) as to_int(getopt); + set $argv = to_array( + *argv, + argc, + to_string(*argv) ); }