From 8bcf895726f5426852ef7f973ef7838905c1b571 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Mon, 27 Feb 2023 22:43:54 +0100 Subject: [PATCH] docs: documented 'octal_string_to_int' --- .wiki/Kernel-documentation.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index 355f56d..8143f3d 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -1010,6 +1010,9 @@ Returns the power of `base ^ exponent`. #### `abs(number)` - function (uint64_t) Returns the absolute value of **_number_**. +#### `octal_string_to_int(string, size)` - function (uint64_t) +Converts a base-8 **_string_** with length **_size_** into an integer and returns it. + ### memory.h Basic memory functionalities.