style(all): clang format

This commit is contained in:
Matteo Flebus 2026-01-12 21:48:11 +01:00
parent e000d2cf33
commit 937e935a6e
2 changed files with 9 additions and 7 deletions

View file

@ -3,7 +3,8 @@
#include <sys/types.h>
enum iob_mode {
enum iob_mode
{
IOB_MODE_NULL = 0,
IOB_MODE_STDIN,
IOB_MODE_SCRIPT,
@ -16,7 +17,8 @@ enum iob_mode {
* the script name when mode is set to IOB_SCRIPT,
* the command to execute when mode is set to IOB_CMD,
*/
struct iob_context {
struct iob_context
{
enum iob_mode mode;
char *args;
};