blob: 9210a8b2c86f2168943231c81ac296a68a046d6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "clpset.h"
# CLGPSETS -- Get the short integer value of a pset parameter.
short procedure clgpsets (pp, parname)
pointer pp # pset descriptor
char parname[ARB] # parameter name
pointer clpset_parname()
short clgets()
begin
return (clgets (PARNAME(pp,parname)))
end
|