From c61bae6ecaf7a490eadeb3122a1b9d7298c7c3bd Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Thu, 6 Jan 2022 00:00:29 +1100 Subject: Reindent config.h --- config.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/config.h b/config.h index 815ef1e..8a3e1c9 100644 --- a/config.h +++ b/config.h @@ -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('!', "@#$%^&*_-+=()[]{}") -- cgit