mirror of
https://github.com/cryb-to/cryb-to.git
synced 2025-04-21 15:13:06 +00:00
Slightly improve function descriptions.
This commit is contained in:
parent
094635f394
commit
8477c4ae0b
3 changed files with 4 additions and 3 deletions
|
@ -37,7 +37,7 @@
|
|||
#include "cryb_mpi_impl.h"
|
||||
|
||||
/*
|
||||
* Add two numbers together.
|
||||
* Store the sum of A and B in X.
|
||||
*/
|
||||
int
|
||||
mpi_add(cryb_mpi *X, const cryb_mpi *A, const cryb_mpi *B)
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include "cryb_mpi_impl.h"
|
||||
|
||||
/*
|
||||
* Subtract one number from another.
|
||||
* Store the difference of A and B in X.
|
||||
*/
|
||||
int
|
||||
mpi_sub(cryb_mpi *X, const cryb_mpi *A, const cryb_mpi *B)
|
||||
|
|
|
@ -37,7 +37,8 @@
|
|||
#include "cryb_mpi_impl.h"
|
||||
|
||||
/*
|
||||
* Store the difference between the absolute values of A and B in X.
|
||||
* Store the absolute value of the difference of the absolute values of A
|
||||
* and B in X.
|
||||
*/
|
||||
int
|
||||
mpi_sub_abs(cryb_mpi *X, const cryb_mpi *A, const cryb_mpi *B)
|
||||
|
|
Loading…
Add table
Reference in a new issue