From e357f665abad29dfdf94103d0ad82774d2ec3d14 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Thu, 24 Aug 2023 01:12:27 +0200 Subject: String: added strto[u]l(3) variants for nxt_str_t. They're really more inspired in the API of BSD's strto[iu](3), but use long just to keep it simple, instead of intmax_t, and since they wrap strtol(3), I called them like it. Signed-off-by: Alejandro Colomar Signed-off-by: Alejandro Colomar --- src/nxt_string.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/nxt_string.h') diff --git a/src/nxt_string.h b/src/nxt_string.h index 18ea5490..72e545ce 100644 --- a/src/nxt_string.h +++ b/src/nxt_string.h @@ -161,7 +161,18 @@ NXT_EXPORT nxt_bool_t nxt_is_complex_uri_encoded(u_char *s, size_t length); NXT_EXPORT ssize_t nxt_base64_decode(u_char *dst, u_char *src, size_t length); +NXT_EXPORT long nxt_ustrtol(const nxt_str_t *s, int *err); +nxt_inline unsigned long nxt_ustrtoul(const nxt_str_t *s, int *err); + + extern const uint8_t nxt_hex2int[256]; +nxt_inline unsigned long +nxt_ustrtoul(const nxt_str_t *s, int *err) +{ + return nxt_ustrtol(s, err); +} + + #endif /* _NXT_STRING_H_INCLUDED_ */ -- cgit