diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-10 22:11:41 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-10 22:11:41 +0530 |
commit | 9a2b779bb2f5f771604c22ddd0ac6d7932b900ff (patch) | |
tree | 7886352d61b130e0b077a16a97ffa86825d09feb /include/util.h | |
parent | 6d3a1f6a1f3a92b726e55ced046c10d2936ee54f (diff) |
util: implement xstrcat
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h new file mode 100644 index 0000000..58c1f58 --- /dev/null +++ b/include/util.h @@ -0,0 +1,6 @@ +#ifndef __UTIL_H +#define __UTIL_H + +void xstrcat(char *s1, char *s2); + +#endif |