diff options
| author | Alejandro Colomar <alx@nginx.com> | 2023-08-24 01:12:27 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@nginx.com> | 2023-09-04 03:40:33 +0200 |
| commit | 3dfab08abc813c9cd2b5e9cb910ae5c557117c93 (patch) | |
| tree | 62e72159e20df08f833a72c31bdee0ab021adace /src/nxt_string.c | |
| parent | 39db8691fe40adcfdb827c194636b87391c7c416 (diff) | |
| download | unit-3dfab08abc813c9cd2b5e9cb910ae5c557117c93.tar.gz unit-3dfab08abc813c9cd2b5e9cb910ae5c557117c93.tar.bz2 | |
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 <alx@nginx.com>
Diffstat (limited to 'src/nxt_string.c')
| -rw-r--r-- | src/nxt_string.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/nxt_string.c b/src/nxt_string.c index 1ca595a1..e660b367 100644 --- a/src/nxt_string.c +++ b/src/nxt_string.c @@ -1,11 +1,20 @@ /* * Copyright (C) Igor Sysoev + * Copyright (C) Alejandro Colomar * Copyright (C) NGINX, Inc. */ #include <nxt_main.h> +#include <errno.h> +#include <stdio.h> +#include <stdlib.h> + +#include <nxt_unit_cdefs.h> + +#include "nxt_string.h" + nxt_str_t * nxt_str_alloc(nxt_mp_t *mp, size_t length) @@ -842,3 +851,30 @@ nxt_base64_decode(u_char *dst, u_char *src, size_t length) return (p - dst); } + + +long +nxt_ustrtol(const nxt_str_t *s, nxt_int_t *err) +{ + char *p, *endptr; + long l; + char buf[BUFSIZ]; + + if (s == NULL || s->length >= nxt_nitems(buf)) { + *err = NXT_ERROR; + return -1; + } + + p = nxt_cpymem(buf, s->start, s->length); + *p = '\0'; + + errno = 0; + l = strtol(buf, &endptr, 0); + + if (errno != 0 || endptr == buf) { + *err = NXT_ERROR; + return -1; + } + + return l; +} |
