summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-08-02 01:31:44 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-08-02 01:41:17 (EDT)
commit6726ddebccda0eaa6b75d1d14587aecce62ad826 (patch)
treeed0b086b6e227b8f2010d8425fec37f3ab627a9c /src/util.h
parentb7f5f6118812bfb6bf0815ab23f3399eec571068 (diff)
downloadmazefight-6726ddebccda0eaa6b75d1d14587aecce62ad826.zip
mazefight-6726ddebccda0eaa6b75d1d14587aecce62ad826.tar.gz
mazefight-6726ddebccda0eaa6b75d1d14587aecce62ad826.tar.bz2
util: Add mf_strcat()
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
new file mode 100644
index 0000000..47688e9
--- /dev/null
+++ b/src/util.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2021 P. J. McDermott
+ *
+ * This file is part of Maze Fight
+ *
+ * Maze Fight is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Maze Fight is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Maze Fight. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MF_UTIL_H_
+#define MF_UTIL_H_
+
+char *
+mf_strcat(const char *str1, const char *str2);
+
+#endif /* MF_UTIL_H_ */