X-Git-Url: https://jxself.org/git/?p=zilutils.git;a=blobdiff_plain;f=zilasm%2Fdirectives.h;fp=zilasm%2Fdirectives.h;h=5988c0a6ae2ffdba5d7d9ba3375fbf8a5df5db18;hp=5b5982ebf96ba7a30253e57a68c2b36e32da5997;hb=82b0f84ab797141758929d16894d42e12ef79af7;hpb=37d32bd49e745a5c1686b6495f60172b24222361 diff --git a/zilasm/directives.h b/zilasm/directives.h index 5b5982e..5988c0a 100644 --- a/zilasm/directives.h +++ b/zilasm/directives.h @@ -22,13 +22,14 @@ #ifndef ZILASM_DIRECTIVES #define ZILASM_DIRECTIVES 1 -typedef int (*Directive_handler)(const char *directive_args); +typedef int (*Directive_handler) (const char *directive_args); -typedef struct { - const char name[16]; - Directive_handler handler; +typedef struct +{ + const char name[16]; + Directive_handler handler; } Directive; -Directive_handler directive_lookup(const char *name, unsigned namelen); +Directive_handler directive_lookup (const char *name, unsigned namelen); #endif /* ifndef ZILASM_DIRECTIVES */