aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common.h b/src/common.h
index 3b071cc..fba45cd 100644
--- a/src/common.h
+++ b/src/common.h
@@ -15,14 +15,14 @@
#define USAGE_STR "Usage: " NAME
struct MemoryStruct {
- uint8_t* memory;
- size_t size;
+ uint8_t* memory;
+ size_t size;
};
struct Command {
- char* name;
- int (*func)(int, char**);
- char* description;
+ char* name;
+ int (*func)(int, char**);
+ char* description;
};
void print_help(const struct Command*, size_t);