blob: 04e597d1630e899f0813d8d7308186105311ed65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <syserr.h>
# CLGLPX -- Get a list structured complex parameter from the CL.
int procedure clglpx (param, xval)
char param[ARB]
complex xval
int clscan(), nscan()
begin
if (clscan (param) == EOF)
return (EOF)
else {
call gargx (xval)
if (nscan() != 1)
call syserrs (SYS_CLNOTNUM, param)
}
return (1)
end
|