llabs - return the absolute value of a long long integer
Standard C Library (libc, -lc)
#include <stdlib.h>
long long int
llabs(long long int j);
The llabs() function returns the absolute value of the long long integer
j.
abs(3), cabs(3), floor(3), labs(3), math(3)
The llabs() function conforms to .
The absolute value of the most negative integer remains negative.
BSD March 6, 2000 BSD
[ Back ] |