From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- sys/clio/cllpset.x | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sys/clio/cllpset.x (limited to 'sys/clio/cllpset.x') diff --git a/sys/clio/cllpset.x b/sys/clio/cllpset.x new file mode 100644 index 00000000..aa06a57a --- /dev/null +++ b/sys/clio/cllpset.x @@ -0,0 +1,17 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include "clpset.h" + +# CLLPSET -- List a pset. Each param,value pair is written to the output +# file using the caller supplied format, e.g., "set %s = \"%s\"\n". + +procedure cllpset (pp, fd, format) + +pointer pp #I pset descriptor +int fd #I output file +char format[ARB] #I format, one %s each for param, value + +begin + call clc_compress() + call clc_list (fd, PS_PSETNAME(pp), format) +end -- cgit