eric pouech (@epo) commented about programs/cmd/wcmdmain.c:
} else break; }
} while (*extraData == 0x00);
} while (WCMD_isEmptyOrJustWhiteSpace(extraData));
just to avoid to introduce a new function, you could perhaps do something like this instead: ``` extradata = WCMD_skip_leading_space(extraData); } while (*extraData == 0x00); ``` (the rest of the patches look good to me)