blob: b5d2691f47d25c724a34be305f207a39677a7868 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "clpset.h"
# CLPPSET -- Set the string value of the named pset parameter.
# [OBSOLETE ROUTINE - see clppseta.x]
procedure clppset (pp, pname, sval)
pointer pp # pset descriptor
char pname[ARB] # parameter name
char sval[ARB] # string value of parameter
pointer clpset_parname()
begin
call clpstr (PARNAME(pp,pname), sval)
end
|