aboutsummaryrefslogtreecommitdiff
path: root/src/modules/utils/utils.h
diff options
context:
space:
mode:
authorAnser <rostgans@tutamail.com>2026-08-11 00:18:57 +0200
committerAnser <rostgans@tutamail.com>2026-08-11 00:18:57 +0200
commiteb6f986361713d6ce47c6d4572bb24d9f6207ddf (patch)
tree3fca62d5cad785acce36a46a660219840c959932 /src/modules/utils/utils.h
parent9ad584b5762433f7c99d7cc7b65ad21ebe4ff932 (diff)
TOBESQUISHED: safe in reconstruction of the codes layout and rework of information handeling also ascii art printing
Diffstat (limited to 'src/modules/utils/utils.h')
-rw-r--r--src/modules/utils/utils.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/modules/utils/utils.h b/src/modules/utils/utils.h
deleted file mode 100644
index 7a0ab02..0000000
--- a/src/modules/utils/utils.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef UTILS_H
-#define UTILS_H
-
-/* function: char *string_format(char* string)
- * input: pointer to a null-terminated string (must not be NULL)
- * return: pointer to a newly allocated string containing all space-separated words,
- * joined by single spaces; leading/trailing/multiple spaces are ignored.
- * on-error: returns NULL if memory allocation fails
- * misc: the returned pointer must be freed by the caller using free()
- * limits: processes at most 10 words, each up to 49 characters (last '\0')
- */
-char *string_format(char* string);
-
-// function: char *concat(const char *str1, const char *str2)
-// input two char pointer
-// return: pointer to string
-// on-error: returns NULL
-// misc: caller needs to free the memory
-char *concat(const char *str1, const char *str2);
-
-#endif