diff options
author | Aaron Ball <nullspoon@oper.io> | 2019-08-27 08:17:28 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2019-08-27 08:17:28 -0600 |
commit | 34307035a3cee02a71ae3a5d216aae0f82475b5e (patch) | |
tree | 18cde37ee7791c01d3161c1caf328b675c4ccac3 | |
parent | ef2e4b3548786141f4ac871da96978161af7119c (diff) | |
download | upwgen-34307035a3cee02a71ae3a5d216aae0f82475b5e.tar.gz upwgen-34307035a3cee02a71ae3a5d216aae0f82475b5e.tar.xz |
Remove -l,--lower switch
This is default and we must have at least one character set always.
-rw-r--r-- | src/main.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -38,7 +38,6 @@ void usage() { " -0,--no-numerals Include at least one numeral in output\n" " -A,--no-capitalize Include at least one numeral in output\n" " -c,--capitalize Include at least one capital letter in output\n" - " -l,--lower Include at least one lower case letter in output\n" " -n,--numerals Include at least one numeral in output\n" " -y,--symbols Include at least one symbol in output\n" " -i,--i18n Include at least one international letter in output\n" @@ -87,9 +86,6 @@ int main(int argc, char* argv[]) { } else if(strcmp(argv[i], "-c") == 0 || strcmp(argv[i], "--capitalize") == 0) { i18n_set_add(set, I18N_TYPE_ASCII_UPPER); - } else if(strcmp(argv[i], "-l") == 0 || strcmp(argv[i], "--lower") == 0) { - i18n_set_add(set, I18N_TYPE_ASCII_LOWER); - } else if(strcmp(argv[i], "-n") == 0 || strcmp(argv[i], "--numerals") == 0) { i18n_set_add(set, I18N_TYPE_ASCII_NUMERALS); |