UnixEnviron.mesa
Copyright
Ó 1991 by Xerox Corporation. All rights reserved.
Willie-s, January 19, 1993 12:21 pm PST
DIRECTORY
Rope
USING [
ROPE];
ROPE access to unix environment variables; clients should use this instead of UXEnviron.
UnixEnviron:
CEDAR
DEFINITIONS =
BEGIN
ROPE:
TYPE ~ Rope.
ROPE;
Procedures.
GetEnv:
PROC [ name:
ROPE ]
RETURNS [ value:
ROPE ];
END.