Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.4 8 lines 254 B view raw
1#ifndef _LIB_KSTRTOX_H 2#define _LIB_KSTRTOX_H 3 4#define KSTRTOX_OVERFLOW (1U << 31) 5const char *_parse_integer_fixup_radix(const char *s, unsigned int *base); 6unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res); 7 8#endif