https://github.com/torvalds/linux
Raw File
Tip revision: 206c5f60a3d902bc4b56dab2de3e88de5eb06108 authored by Linus Torvalds on 09 November 2014, 22:55:29 UTC
Linux 3.18-rc4
Tip revision: 206c5f6
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