LABS - absolute value of a long integer.

(ANSI Standard)

Usage:

#include <stdlib.h>
i = labs(j);

Where:

long j;
is any signed integer.
long i;
receives the absolute value of "j".

Description:

"labs" returns the absolute value of its long argument.

Copyright © 1996, Thinkage Ltd.