mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
c06528d702
- No longer returns true for partial string parsing.
All characters in the string must be part of the number.
i.e: parse_int("2.345") no longer returns (2, true) - it now returns (2, false)
- Return (0, false) on empty strings.