From 357a91263cb7f6626ada9a9e12d905794eaf866b Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 16 Mar 2026 11:13:13 +0100 Subject: [PATCH] Mon 16 Mar 11:09:06 CET 2026 --- src/str.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/str.h diff --git a/src/str.h b/src/str.h new file mode 100644 index 0000000..4737ad2 --- /dev/null +++ b/src/str.h @@ -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