aboutsummaryrefslogtreecommitdiff
path: root/sys/etc/envgeti.x
blob: a3e141903e12f05348d7dd5388394cea944f2199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	<syserr.h>
include	<mach.h>

# ENVGETI -- Fetch an environment variable and try to interpret its value
# as an integer.  Abort if variable is not found or cannot be converted to
# a number.

int procedure envgeti (varname)

char	varname[ARB]

int	ival, ip
char	val[MAX_DIGITS]
int	ctoi(), envfind()
errchk	envfind, syserrs

begin
	ip = 1
	if (envfind (varname, val, MAX_DIGITS) > 0)
	    if (ctoi (val, ip, ival) > 0)
		return (ival)

	call syserrs (SYS_ENVNNUM, varname)
end