-
Notifications
You must be signed in to change notification settings - Fork 18
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
Exporting excite as a function instead of a binary #11
Conversation
Looks good! A request: Can you rename |
for (;;) { | ||
if (freadf(&p2, sizeof(p2), 1, fp) != 1) | ||
return (0); | ||
for (int fn = 1; fn < n; fn++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this line may cause compilation error on MSVC on windows. While I was working on #8, I found MSVC on AppVeyor throws error for C89-imcompatible codes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, I forgot MSVC still does not have support for C99 (they're only 16 years late!). This is now fixed.
Exporting excite as a function instead of a binary
Thanks! |
This PR adds
excite
as a function. I'll be sending a separate PR to pysptk with the Cython part of the code.