https://github.com/torvalds/linux
Raw File
Tip revision: d8dfad3876e4386666b759da3c833d62fb8b2267 authored by Linus Torvalds on 26 August 2013, 00:43:22 UTC
Linux 3.11-rc7
Tip revision: d8dfad3
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