diff options
Diffstat (limited to 'Src/utils.c')
-rw-r--r-- | Src/utils.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Src/utils.c b/Src/utils.c index ab5fbbeb4..e503b6844 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -3473,6 +3473,20 @@ appstr(char *base, char const *append) } /**/ +mod_export char * +zhtricat(char const *s1, char const *s2, char const *s3) +{ + char *ptr; + + ptr = (char *)zhalloc(strlen(s1) + strlen(s2) + strlen(s3) + 1); + strcpy(ptr, s1); + strcat(ptr, s2); + strcat(ptr, s3); + return ptr; +} + + +/**/ static int upchdir(int n) { |