diff options
author | Nicholas Tay <nick@windblume.net> | 2022-01-06 00:00:29 +1100 |
---|---|---|
committer | Nicholas Tay <nick@windblume.net> | 2022-01-06 00:01:53 +1100 |
commit | c61bae6ecaf7a490eadeb3122a1b9d7298c7c3bd (patch) | |
tree | 6396dcbc9c8e1dc04f920a423a9dc62b347970cb /config.h | |
parent | 72a346dc04575e62dacf63dad8d36b7770ba5561 (diff) | |
download | passgen-c61bae6ecaf7a490eadeb3122a1b9d7298c7c3bd.tar.gz passgen-c61bae6ecaf7a490eadeb3122a1b9d7298c7c3bd.tar.bz2 passgen-c61bae6ecaf7a490eadeb3122a1b9d7298c7c3bd.zip |
Reindent config.h
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,10 +1,12 @@ #define DEFAULT_GRAMMAR "Cvccvc!##" -// For vowels: -// i, o excluded due to potentially confusing 1/l/i + 0/o -// y included as a vowel because it kinda is one +/* + * For vowels: + * i, o excluded due to potentially confusing 1/l/i + 0/o + * y included as a vowel because it kinda is one + */ #define CLASSES \ - CLASS('v', "aeuy") \ - CLASS('c', "bcdfghkmnprstvwxz") \ - CLASS('#', "1234567890") \ - CLASS('!', "@#$%^&*_-+=()[]{}") + CLASS('v', "aeuy") \ + CLASS('c', "bcdfghkmnprstvwxz") \ + CLASS('#', "1234567890") \ + CLASS('!', "@#$%^&*_-+=()[]{}") |