aboutsummaryrefslogtreecommitdiff
path: root/sys/clio/clgpsetb.x
blob: 651f5306551af78f70f9dca001b8467788a3f7fe (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"

# CLGPSETB -- Get the boolean value of a pset parameter.

bool procedure clgpsetb (pp, parname)

pointer	pp			# pset descriptor
char	parname[ARB]		# parameter name

pointer	clpset_parname()
bool	clgetb()

begin
	return (clgetb (PARNAME(pp,parname)))
end