mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-16 16:14:36 -04:00
command line: allow data/input args anywhere on line; frontend tests
This commit is contained in:
parent
2fcf622754
commit
736bc76f66
9 changed files with 891 additions and 185 deletions
|
@ -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';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue