aboutsummaryrefslogtreecommitdiff
path: root/src/inner_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inner_tools.h')
-rw-r--r--src/inner_tools.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/inner_tools.h b/src/inner_tools.h
deleted file mode 100644
index 87489c8..0000000
--- a/src/inner_tools.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef MAGI_INCLUDED_INNER_TOOLS
-#define MAGI_INCLUDED_INNER_TOOLS
-/* Magi Inner Tools
- * This file must not be included in header files intended for external use,
- * it contains some common utility functions for use in source files.
- */
-
-
-void magi_str_lowercase(char *str);
-
-/* Results of both create functions are malloced, so need to be freed. */
-char *magi_str_create_copy(const char *first, int len);
-char *magi_str_create(int len);
-
-/* Null only in case of error; if *dest is null creates string. */
-int magi_str_add(char **dest, int *len, int *size, char c);
-
-
-#endif