diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-10-30 12:18:24 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-10-30 12:18:24 +0000 |
commit | 50da02706335d2f7a45a97ba3b6bdbe223e214a8 (patch) | |
tree | 81ad17ef2d7eab39e6d755c90374d8c155bb8f9f /src | |
parent | 54e1ac84ab3182b106eb9d4b4f52f172e2a985a5 (diff) | |
download | skalibs-50da02706335d2f7a45a97ba3b6bdbe223e214a8.tar.xz |
Typo fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/skalibs/skamisc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/skalibs/skamisc.h b/src/include/skalibs/skamisc.h index 657f526..6a03e7a 100644 --- 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) ; |