Closed abegines closed 6 years ago
did you mean ...? return c == ' ' || c == '\t' || c == '\n' || c == '\r';
return c == ' ' || c == '\t' || c == '\n' || c == '\r';
when you say... return c == ' ' || c == '\t' || c == '\n' || c == 'r';
return c == ' ' || c == '\t' || c == '\n' || c == 'r';
Ah - you are correct. However, this function is never called so there is no apparent error. The firmware contains much detritus like this. Sigh...
did you mean ...?
return c == ' ' || c == '\t' || c == '\n' || c == '\r';
when you say...
return c == ' ' || c == '\t' || c == '\n' || c == 'r';