Mass reformat

This commit is contained in:
Imbus 2025-08-18 14:59:16 +02:00
parent 4d27def35e
commit df11e34235
27 changed files with 121 additions and 136 deletions

View file

@ -14,8 +14,12 @@ typedef struct {
int (*get)();
} Test;
void my_put(int a) { global = a; }
int my_get() { return global; }
void my_put(int a) {
global = a;
}
int my_get() {
return global;
}
void executor(Test *t) {
t->put(10);