Main Page
+
Namespaces
Namespace List
+
Namespace Members
All
Functions
Variables
+
Classes
Class List
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Typedefs
_
b
c
e
l
m
n
p
r
s
t
v
w
Enumerations
+
Enumerator
a
b
c
d
e
i
l
m
n
o
p
r
t
w
x
y
z
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
contrib
contact
clib
max0.c
Go to the documentation of this file.
1
/* max0 gives the maximum value of integers
2
3
Ver1.0 Apr.12,1988. */
4
5
#include "
arith.h
"
6
7
int
max0
(va_alist)
8
va_dcl
9
{
10
va_list ap;
11
int
i,
n
;
12
int
max
,x;
13
14
va_start(ap);
15
16
n=va_arg(ap,
int
);
17
max=va_arg(ap,
int
);
18
19
for
(i=0; i<n-1; i++){
20
x=va_arg(ap,
int
);
21
if
(x>max)
22
max=x;
23
}
24
25
return
(max);
26
27
va_end(ap);
28
}
29
30
31
32
33
34
35
36
arith.h
n
GLfloat n[6][3]
Definition:
cube.c:15
max0
int max0(va_alist)
Definition:
max0.c:7
max
#define max(I1, I2)
Definition:
eustags.c:134
euslisp
Author(s): Toshihiro Matsui
autogenerated on Mon Feb 28 2022 22:18:27