First Upload

This commit is contained in:
2022-02-25 15:33:16 +02:00
commit 0c74d10f0d
295 changed files with 74784 additions and 0 deletions

13
9/test.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include "IdanStringLib.h"
void main(void)
{
char str1[100] = {'a', 'b', 'c', 'b', 'e', '\0'};
char str2[100] = {'b', '\0'};
RemoveAllStringBFromStringA(str1, str2);
printf("%u\n", StringLenght(str1));
printf("%s\n", str1);
printf("%d\n", !0);
}