XINU
lib
abs.c
Go to the documentation of this file.
1
13
int
abs
(
int
arg)
14
{
15
if
(arg < 0)
16
arg = -arg;
17
return
(arg);
18
}
abs
int abs(int arg)
整数の絶対値(int型)を返す。
Definition:
abs.c:13
Generated by
1.8.13