From a0015018dbc1de3f84c66298357e7bc7f75021e9 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Sun, 26 Feb 2023 15:08:08 +0100 Subject: [PATCH] docs: documented 'string_find_last' --- .wiki/Kernel-documentation.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index 7e11934..e772efb 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -956,6 +956,9 @@ Returns **false** if they aren't equal. #### `string_find_next(string, chr)` - function (uint32_t) Returns the index of the next character that matches **_chr_** in **_string_**. +#### `string_find_last(string, chr)` - function (uint32_t) +Returns the index of the last character that matches **_chr_** in **_string_**. + #### `variadic_format_size(string, args)` - function (uint64_t) Returns how long a format string with the given pattern (**_string_**) and **_args_** would be. Useful to create a big enough buffer before formatting a string.