#include "notae.h"
FUNCTION c_getival( valuestring, max, numspec, output )
char *valuestring; long max; long *numspec; long *output;
Space delimited string of integer values.
The maximum number of values to extract from valuestring.
The actual number of values extracted from valuestring.
The values extracted from valuestring and converted to integers.
Up to max values are extracted from valuestring using strtol(). The values are returned in output.
E_SUCC (0) --> success E_FAIL (-1) --> failure