XINU
Functions
labs.c File Reference

実数(long型)の絶対値を返す。 More...

Go to the source code of this file.

Functions

long labs (long arg)
 実数(long型)の絶対値を返す。 More...
 

Detailed Description

実数(long型)の絶対値を返す。

Definition in file labs.c.

Function Documentation

◆ labs()

long labs ( long  arg)

実数(long型)の絶対値を返す。

Parameters
[in]arg絶対値に変換したい実数(long型)
Returns
引数argの絶対値(long型)

Definition at line 11 of file labs.c.

12 {
13  if (arg < 0)
14  arg = -arg;
15  return (arg);
16 }