command line: allow data/input args anywhere on line; frontend tests

This commit is contained in:
gitlost 2020-08-04 22:22:26 +01:00
parent 2fcf622754
commit 736bc76f66
9 changed files with 891 additions and 185 deletions

View file

@ -86,7 +86,7 @@ INTERNAL void to_upper(unsigned char source[]) {
for (i = 0; i < src_len; i++) {
if ((source[i] >= 'a') && (source[i] <= 'z')) {
source [i] = (source[i] - 'a') + 'A';
source[i] = (source[i] - 'a') + 'A';
}
}
}