diff options
author | Ian C <ianc@noddybox.co.uk> | 2004-06-05 01:09:58 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2004-06-05 01:09:58 +0000 |
commit | 4a6391ce910b5f71574e20b31f1e9429d756b96d (patch) | |
tree | e6866cc37946ca2ca69d9719cd5f8e30311fe2dc /src/util.h | |
parent | c378e8f900d85d59a8a616bf0b8b14e426d898e1 (diff) |
Fixed checking of trusted users. Tweaks to compile under FreeBSD 4.10. Added
debug output option.
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -43,6 +43,13 @@ char *CopyStr(const char *p); +/* Concatante a string. + NOTE: orig must have been allocated with Malloc() or Realloc(), and will + have been free()ed when this returns. +*/ +char *CatStr(char *orig, const char *p); + + /* Malloc wrapper. Just use free() to free. */ void *F_Malloc(const char *file, int line, size_t len); |