logoalt Hacker News

alexfootoday at 1:18 PM0 repliesview on HN

I remember an old project that ran into something like this. I think we just used atoi() or similar and the error check was a string comparison between the original input and a sprintf() of the converted value.

Ugly (and not performant if in a hot path) but it works.