docs: documented 'abs' function of 'utils/math.h'

This commit is contained in:
antifallobst 2023-02-11 16:02:20 +01:00
parent 42b331e3b0
commit 7a471bc77b
1 changed files with 3 additions and 0 deletions

View File

@ -364,6 +364,9 @@ Example: `FLOOR_TO(13, 8)` would return 8, because 8 is the next smaller multipl
#### `pow(base, exponent)` - function (uint64_t) #### `pow(base, exponent)` - function (uint64_t)
Returns the power of `base ^ exponent`. Returns the power of `base ^ exponent`.
#### `abs(number)` - function (uint64_t)
Returns the absolute value of **_number_**.
### memory.h ### memory.h
Basic memory functionalities. Basic memory functionalities.