intparse.h 195 B

1234567891011
  1. #include <stdint.h>
  2. #include <stddef.h>
  3. struct intparse {
  4. uintmax_t val;
  5. unsigned small;
  6. size_t cnt;
  7. char neg, base, state, err;
  8. };
  9. int __intparse(struct intparse *, const void *, size_t);