rcx

library of miscellaneous bits of C code
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

commit 9350a66843371a4a0bf4a965301db7623727cbe9
parent 3b69b7439c4e37b50d60deae8cf9509ba31f664c
Author: Robert Russell <robertrussell.72001@gmail.com>
Date:   Wed, 17 Jul 2024 17:43:32 -0700

Leave a note

Diffstat:
Minc/str.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/inc/str.h b/inc/str.h @@ -5,6 +5,11 @@ #include "def.h" +/* TODO: Don't delete this module, as was originally planned. Instead, rename + * it to "zstr.h" (for zero-terminated string) and rename "string.h" to + * "rstr.h". Then both modules should provide approximately the same operations + * for their respective string representations. */ + char *r_str_dup(char *s); char *r_str_edup(char *s);