https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 23ac39bf032552df23f3dd7b54b2064a948b60bf authored by Jason Self on 08 December 2013, 16:17:27 UTC
Linux-libre 3.10.23-gnu
Tip revision: 23ac39b
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