summaryrefslogtreecommitdiffstats
path: root/include/a2i/strtoi.h
blob: d202da38698d4ba250b44644a963fe0db7925d40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// SPDX-FileCopyrightText: 2023-2024, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception


#ifndef INCLUDE_A2I_STRTOI_H_
#define INCLUDE_A2I_STRTOI_H_


#include <stdint.h>

#include <a2i/attr.h>
#include <a2i/qual.h>


#if defined(__clang__)
# pragma clang assume_nonnull begin
#endif
A2I_ATTR_ACCESS(read_only, 1)
A2I_ATTR_ACCESS(write_only, 2)
A2I_ATTR_ACCESS(write_only, 6)
A2I_ATTR_STRING(1)
intmax_t a2i_strtoi(const char *s, char **a2i_nullable restrict endp,
    int base, intmax_t min, intmax_t max, int *a2i_nullable restrict status);

A2I_ATTR_ACCESS(read_only, 1)
A2I_ATTR_ACCESS(write_only, 2)
A2I_ATTR_ACCESS(write_only, 6)
A2I_ATTR_STRING(1)
uintmax_t a2i_strtou(const char *s, char **a2i_nullable restrict endp,
    int base, uintmax_t min, uintmax_t max, int *a2i_nullable restrict status);

A2I_ATTR_ACCESS(read_only, 1)
A2I_ATTR_ACCESS(write_only, 2)
A2I_ATTR_ACCESS(write_only, 6)
A2I_ATTR_STRING(1)
uintmax_t a2i_strtou_noneg(const char *s, char **a2i_nullable restrict endp,
    int base, uintmax_t min, uintmax_t max, int *a2i_nullable restrict status);
#if defined(__clang__)
# pragma clang assume_nonnull end
#endif


#endif  // include guard