Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved undefined behavior for isspace (#145)
* Resolved undefined behavior for isspace The value passed to isspace must be representable as an unsigned char (or EOF) according to the C99 standard. The behavior for other values is undefined. This could cause problems for char values > 127 depending on the signedness of char.
- Loading branch information