feat(string): format, insert, replace, remove

This commit is contained in:
2025-09-09 02:51:47 +02:00
parent 26f0887c5c
commit 6b177c87c6
6 changed files with 196 additions and 16 deletions

View File

@@ -6,9 +6,13 @@
#include <stdio.h>
void test_hm1();
void test_q1();
void test_str1();
void test_str2();
void test_str3();
void test_v1();
int main(void) {
@@ -25,6 +29,7 @@ int main(void) {
puts("==== [Running String tests] ====");
test_str1();
test_str2();
test_str3();
puts("OK!");
puts("");