Documented most of the still relevant tools

This commit is contained in:
2023-03-01 10:12:20 -08:00
parent b9625e7f14
commit 8cc122d97c
11 changed files with 225 additions and 50 deletions

View File

@@ -8,6 +8,12 @@
#pragma once
#include "dawnsharedlibs.hpp"
/**
* Remove all instances of a character from a C-Styled string.
*
* @param string String to remove characters from.
* @param remove Character to remove.
*/
static inline void stringRemoveAll(char *string, char remove) {
size_t len = strlen(string);
size_t i, j;