blob: a8dd1d855568799fc8ad76be64e53aa7e5171a58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "clpset.h"
# CLGPSET -- Get the string value of the named pset parameter.
# [OBSOLETE ROUTINE - see clgpseta.x]
procedure clgpset (pp, pname, outstr, maxch)
pointer pp # pset descriptor
char pname[ARB] # parameter name
char outstr[maxch] # output string
int maxch # max chars out
pointer clpset_parname()
begin
call clgstr (PARNAME(pp,pname), outstr, maxch)
end
|