Mon 16 Mar 11:09:06 CET 2026

This commit is contained in:
sbosse 2026-03-16 11:13:13 +01:00
parent afc0ad320e
commit 357a91263c

8
src/str.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _STR_H
#define _STR_H
void string_concat(char *dst,char *src);
void string_copy(char* dst, char *src, int length);
void string_rconcat(char *dst,char *prefix);
int string_cmp(char* s1, char *s2, int maxlength);
int string_length(char* s);
#endif