skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

commit 50da02706335d2f7a45a97ba3b6bdbe223e214a8
parent 54e1ac84ab3182b106eb9d4b4f52f172e2a985a5
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Mon, 30 Oct 2023 12:18:24 +0000

 Typo fixes

Signed-off-by: Laurent Bercot <ska@appnovation.com>

Diffstat:
Msrc/include/skalibs/skamisc.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/include/skalibs/skamisc.h b/src/include/skalibs/skamisc.h @@ -29,8 +29,8 @@ extern int string_quote_options (stralloc *, char const *, size_t, uint32_t) ; extern int string_quote_nodelim_mustquote_options (stralloc *, char const *, size_t, char const *, size_t, uint32_t) ; #define string_quote_nodelim_mustquote(sa, s, len, delim, delimlen) string_quote_nodelim_mustquote_options(sa, s, len, delim, (delimlen), 0) #define string_quote_nodelim_mustquote_nospace(sa, s, len, delim, delimlen) string_quote_nodelim_mustquote_options(sa, s, len, delim, (delimlen), 1) -#define string_quote_nodelim (sa, s, len) string_quote_nodelim_mustquote(sa, s, (len), "\"", 1) -#define string_quote_nodelim_nospace (sa, s, len) string_quote_nodelim_mustquote_nospace(sa, s, (len), "\"", 1) +#define string_quote_nodelim(sa, s, len) string_quote_nodelim_mustquote(sa, s, (len), "\"", 1) +#define string_quote_nodelim_nospace(sa, s, len) string_quote_nodelim_mustquote_nospace(sa, s, (len), "\"", 1) extern int string_unquote (char *, size_t *, char const *, size_t, size_t *) ; extern ssize_t string_unquote_nodelim (char *, char const *, size_t) ;