source: azure_iot_hub/trunk/musl-1.1.18/src/stdlib/strtol.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 1.5 KB
Line 
1#include "stdio_impl.h"
2#include "intscan.h"
3#include "shgetc.h"
4#include <inttypes.h>
5#include <limits.h>
6#include <ctype.h>
7#include "libc.h"
8
9static unsigned long long strtox(const char *s, char **p, int base, unsigned long long lim)
10{
11 /* FIXME: use a helper function or macro to setup the FILE */
12 FILE f;
13 f.flags = 0;
14 f.buf = f.rpos = (void *)s;
15 if ((size_t)s > (size_t)-1/2)
16 f.rend = (void *)-1;
17 else
18 f.rend = (unsigned char *)s+(size_t)-1/2;
19 f.lock = -1;
20 shlim(&f, 0);
21 unsigned long long y = __intscan(&f, base, 1, lim);
22 if (p) {
23 size_t cnt = shcnt(&f);
24 *p = (char *)s + cnt;
25 }
26 return y;
27}
28
29unsigned long long strtoull(const char *restrict s, char **restrict p, int base)
30{
31 return strtox(s, p, base, ULLONG_MAX);
32}
33
34long long strtoll(const char *restrict s, char **restrict p, int base)
35{
36 return strtox(s, p, base, LLONG_MIN);
37}
38
39unsigned long strtoul(const char *restrict s, char **restrict p, int base)
40{
41 return strtox(s, p, base, ULONG_MAX);
42}
43
44long strtol(const char *restrict s, char **restrict p, int base)
45{
46 return strtox(s, p, base, 0UL+LONG_MIN);
47}
48
49intmax_t strtoimax(const char *restrict s, char **restrict p, int base)
50{
51 return strtoll(s, p, base);
52}
53
54uintmax_t strtoumax(const char *restrict s, char **restrict p, int base)
55{
56 return strtoull(s, p, base);
57}
58
59weak_alias(strtol, __strtol_internal);
60weak_alias(strtoul, __strtoul_internal);
61weak_alias(strtoll, __strtoll_internal);
62weak_alias(strtoull, __strtoull_internal);
63weak_alias(strtoimax, __strtoimax_internal);
64weak_alias(strtoumax, __strtoumax_internal);
Note: See TracBrowser for help on using the repository browser.