https://github.com/torvalds/linux
Revision dd775ae2549217d3ae09363e3edb305d0fa19928 authored by Linus Torvalds on 31 March 2012, 23:24:09 UTC, committed by Linus Torvalds on 31 March 2012, 23:24:09 UTC
1 parent b7ffff4
Raw File
Tip revision: dd775ae2549217d3ae09363e3edb305d0fa19928 authored by Linus Torvalds on 31 March 2012, 23:24:09 UTC
Linux 3.4-rc1
Tip revision: dd775ae
kstrtox.h
#ifndef _LIB_KSTRTOX_H
#define _LIB_KSTRTOX_H

#define KSTRTOX_OVERFLOW	(1U << 31)
const char *_parse_integer_fixup_radix(const char *s, unsigned int *base);
unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res);

#endif
back to top