-
Notifications
You must be signed in to change notification settings - Fork 290
Use existing C89 header files #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
eef8266
to
1be1bf7
Compare
|
I actually think *_max can be removed from the state completely and the constants from limits.h can be used directly instead? I guess I didn't know they existed in C89. |
Ah, good point, I should have looked more at where those values where actually used in the code. That seems to be a better solution indeed. |
The specific reason is that No real reason, in short :-) |
Yes, these global constants could be used instead and |
Even with -8 they are still constant, so would be better to store them as const rather than in the state. |
Is |
e89515c
to
44f2a14
Compare
44f2a14
to
13faf02
Compare
I've ended up changing to |
No description provided.