format: let clang-format run ._.

(won't even talk about clang-tidy)
This commit is contained in:
2024-09-05 20:26:58 +02:00
parent b34528d1cb
commit dbbab78e23
12 changed files with 142 additions and 135 deletions

View File

@@ -15,9 +15,9 @@ void strcln(char **dest, const char *source) {
strcpy(*dest, source);
}
enum keys find_keyname(char* name) {
enum keys find_keyname(char *name) {
for (size_t i = 0; i < sizeof(key_mappings) / sizeof(key_mappings[0]); i++) {
if(strcmp(key_names[i], name) == 0)
if (strcmp(key_names[i], name) == 0)
return (enum keys)i;
}