int scan_these(char *line, int n, char *format, void *dest, int size)
The return value is the actual number of parameters successfully scanned.
Ex.
scan\_these(" 12.3 4332.2 12.43", 3, "%f", myarray, sizeof(*myarray));
returns 3 and fills the float array myarray with the
values [12.3, 4332.2, 12.43]
1.0 29/10-96 Ulrik Kjems