author | Rich Felker <dalias@aerifal.cx> | 2011年07月14日 00:51:45 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011年07月14日 00:51:45 -0400 |
commit | ecc9c5fcfa4831b290cc1a63c0346cbb0c1fcf42 (patch) | |
tree | 2fb20d623af9622cb8ac9f461e542ca23fc6d791 /src/internal/intparse.h | |
parent | 0e2331c9b6e0c0b4f24019d4062f4c655d28cbaf (diff) | |
download | musl-ecc9c5fcfa4831b290cc1a63c0346cbb0c1fcf42.tar.gz |
-rw-r--r-- | src/internal/intparse.h | 11 |
diff --git a/src/internal/intparse.h b/src/internal/intparse.h new file mode 100644 index 00000000..78e800d1 --- /dev/null +++ b/src/internal/intparse.h @@ -0,0 +1,11 @@ +#include <stdint.h> +#include <stddef.h> + +struct intparse { + uintmax_t val; + unsigned small; + size_t cnt; + char neg, base, state, err; +}; + +int __intparse(struct intparse *, const void *, size_t); |