kstrtox.h 293 B

12345678910
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LIB_KSTRTOX_H
  3. #define _LIB_KSTRTOX_H
  4. #define KSTRTOX_OVERFLOW (1U << 31)
  5. const char *_parse_integer_fixup_radix(const char *s, unsigned int *base);
  6. unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res);
  7. #endif