improved formatting

This commit is contained in:
Luka Jankovic 2025-09-26 20:33:55 +02:00
parent 737ba58860
commit ccdd081d36
12 changed files with 46 additions and 37 deletions

View file

@ -23,9 +23,10 @@ static inline void kubo_command_write(struct kubo_context *context, char *rest);
static inline void kubo_command_read(struct kubo_context *context, char *rest);
static const struct kubo_command_data kubo_commands[] = {
{":q", kubo_command_exit},
{":w", kubo_command_write},
{":e", kubo_command_read}};
{ ":q", kubo_command_exit },
{ ":w", kubo_command_write },
{ ":e", kubo_command_read }
};
static const size_t kubo_commands_size =
sizeof(kubo_commands) / sizeof(kubo_commands[0]);