Revision 91ba548cfd5cc8ee93b9435527efb8fa4caf5c5e authored by Paul Mundt on 01 August 2012, 04:49:13 UTC, committed by Paul Mundt on 01 August 2012, 04:49:13 UTC
2 parent s b9ccfda + 4dc4c51
Raw File
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