From a36577183430607196e88c2b951f2dc71a06dbaf Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 22 May 2016 13:14:27 -0400 Subject: dstring: Clean up the API a bit. --- dstring.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dstring.h') diff --git a/dstring.h b/dstring.h index 7e46da8..cd867ad 100644 --- a/dstring.h +++ b/dstring.h @@ -65,17 +65,17 @@ int dstresize(char **dstr, size_t length); int dstrcat(char **dest, const char *src); /** - * Append to a dynamic string at a particular offset. + * Append to a dynamic string. * * @param dest * The destination dynamic string. - * @param pos - * The offset at which to append. * @param src * The string to append. + * @param n + * The maximum number of characters to take from src. * @return 0 on success, -1 on failure. */ -int dstrcatat(char **dest, size_t pos, const char *src); +int dstrncat(char **dest, const char *src, size_t n); /** * Free a dynamic string. -- cgit v1.2.3