helpnode "Crypt help\nUsage : prime [options]" #int bits; option (b, bits) INT "BITS" { $bits = $1 } "specify the number of bits for prime numbers." option (h, help) { gaa_help(); exit(0); } "shows this help text" #int cparams; option (c) { $cparams = 1; } "Print the prime in C language format." init { $bits=1040; $cparams = 0; }