SSBM Decomp
Loading...
Searching...
No Matches
inlines.h
Go to the documentation of this file.
1#ifndef MELEE_LB_INLINES_H
2#define MELEE_LB_INLINES_H
3
5#define SKIP_CMD(cmd, n) \
6 do { \
7 int i; \
8 for (i = 0; i < (n); i++) { \
9 ++(cmd)->u; \
10 } \
11 } while (0);
12
13#define NEXT_CMD(cmd) \
14 do { \
15 ++(cmd)->u; \
16 } while (0);
17
18#endif