From 81f179e777ebe8d5bc2cc80a7e11bb9559df24fd Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 3 Jul 2023 06:36:13 -0700 Subject: til_str: mechanical rename s/seed/string/ I get why I called this seed at the time as it was the starting string of a potentially larger buildup... but it's just ambiguous naming with the other more descriptive uses of seed in the tree, and isn't even really appropriate. --- src/til_str.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/til_str.c') diff --git a/src/til_str.c b/src/til_str.c index 6b85556..298e88d 100644 --- a/src/til_str.c +++ b/src/til_str.c @@ -49,20 +49,20 @@ static til_str_t * til_str_nulstr(size_t minsize) } -/* allocate a new til_str, starting with a dup of seed, just use "" for an empty str, there is no NULL str */ -til_str_t * til_str_new(const char *seed) +/* allocate a new til_str, starting with a dup of string, just use "" for an empty str, there is no NULL str */ +til_str_t * til_str_new(const char *string) { til_str_t *str; size_t len; - assert(seed); + assert(string); - len = strlen(seed); + len = strlen(string); str = til_str_nulstr(len + 1); if (!str) return NULL; - memcpy(str->buf, seed, len); + memcpy(str->buf, string, len); str->size.used += len; return str; -- cgit v1.2.1