swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 388f7b1d6e8ca06762e2454d28d6c3c55ad0fe95 authored by Linus Torvalds on 07 February 2016, 23:38:30 UTC
Linux 4.5-rc3
Tip revision: 388f7b1
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