https://jxself.org/git/linux-libre.git
Raw File
Tip revision: e79f2cb5fa9da501de3a0d10b6fcd43e655a66e6 authored by Jason Self on 26 February 2016, 13:08:40 UTC
Linux-libre 3.12.55-gnu
Tip revision: e79f2cb
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