blob: f750ce3bb997a97c9da56e280815b1cdddf15f74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
.TH LIBJ2_MINUS_ABS_J2I 3 LIBJ2
.SH NAME
libj2_minus_abs_j2i \- Calculate the additive inverse of the absolute value
.SH SYNOPSIS
.nf
#include <libj2.h>
void \fBlibj2_minus_abs_j2i\fP(struct libj2_j2i *\fIa\fP);
void \fBlibj2_minus_abs_j2i_to_j2i\fP(const struct libj2_j2i *\fIa\fP, struct libj2_j2i *\fIr\fP);
.fi
.PP
Link with
.IR -lj2 .
.SH DESCRIPTION
The
.BR libj2_minus_abs_j2i ()
and
.BR libj2_minus_abs_j2i_to_j2i ()
functions calculate the additive inverse
of the absolute value of
.IR a .
.PP
The
.BR libj2_minus_abs_j2i ()
function stores the result in
.IR a .
.PP
The
.BR libj2_minus_abs_j2i_to_j2i ()
function stores the result in
.IR r .
.PP
The arguments are assumed to be
.RI non- NULL .
.SH RETURN VALUE
None.
.SH ERRORS
The above listed functions cannot fail.
.SH HISTORY
The
.BR libj2_minus_abs_j2i ()
and
.BR libj2_minus_abs_j2i_to_j2i ()
functions were added in version 1.1 of
.BR libj2 .
.SH SEE ALSO
.BR libj2 (7),
.BR libj2_abs_j2i (3),
.BR libj2_minus_j2i (3)
|