source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/stdlib/strtol.c@ 374

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

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 1.7 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
59#if defined(_MSC_VER) || defined(__c2__)
60weak_alias(musl_strtol, __strtol_internal);
61weak_alias(musl_strtoul, __strtoul_internal);
62#else
63weak_alias(strtol, __strtol_internal);
64weak_alias(strtoul, __strtoul_internal);
65#endif
66weak_alias(strtoll, __strtoll_internal);
67weak_alias(strtoull, __strtoull_internal);
68weak_alias(strtoimax, __strtoimax_internal);
69weak_alias(strtoumax, __strtoumax_internal);
Note: See TracBrowser for help on using the repository browser.