Hey sin, thanks for your feedback! >> -static char * >> -eat(char *s, int (*p)(int), int r) { >> +static char* >> +eat(char *s, int (*p)(int), const int r) { >> while(*s != '\0' && p(*s) == r) >> s++; >> return s; >> } > > Please do not use char* instead use char *.
I'm puzzled. What's with util.c:57? I'll invert the change and apply it to line 57 instead of 50. > >> int >> -main(int argc, char *argv[]) { >> +main(const int argc, const char *argv[]) { > > Do no use const for main. Doesn't make sense. Yep, I should've read more about it. I'll remove it from the patch. > > Thanks, > sin > >