You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
7 lines
154 B
C
7 lines
154 B
C
#ifndef HELPER_MACROS_H
|
|
#define HELPER_MACROS_H
|
|
|
|
#define LIST_NEXT_ITEM(curItem, type) ((type *)((s32)curItem + sizeof(type)))
|
|
|
|
#endif // HELPER_MACROS_H
|