panda_parse_uint64

Function panda_parse_uint64 

Source
pub unsafe extern "C" fn panda_parse_uint64(
    args: *mut panda_arg_list,
    argname: *const i8,
    defval: u64,
) -> u64
Expand description

panda_parse_uint64() - Get value corresponding to this plugin arg as a uint64, with default. @args: The previously parsed panda_arg_list. @argname: The name of the argument in args. @defval: A default value.

Look through the arguments in args, and if any have name argname, translate the associated value into a uint64 and return it. If no such name is found, use the provided default.

Return: a uint64 from args or default.