Hacker News new | past | comments | ask | show | jobs | submit login




People say that gets is fundamentally broken as an API, beyond repair.

However, gets could have been "rescued" in C by requiring every implementation to publish a constant, say in <limits.h>, which indicates a maximum of how many bytes (including null terminator) the gets function will place into the target buffer, and ensuring that gets observes this constant.

Indeed, evidently, there was talk of this, and supposedly Doug Gwyn proposed that simply BUFSIZ be re-used for this purpose.

With such a constant in place, programs using gets could be wrenched out of the jaws of undefined behavior by sizing the input array according to that constant, ensuring that there cannot be overflow.

Rather than introducing this requirement, in the end the function was simply removed from the language.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: