mirror of
https://github.com/n64decomp/sm64.git
synced 2025-03-09 22:09:44 -04:00
7 lines
138 B
C
7 lines
138 B
C
#ifndef _HELPER_MACROS_H
|
|
#define _HELPER_MACROS_H
|
|
|
|
#define LIST_NEXT_ITEM(curItem, type) ((type *)((s32)curItem + sizeof(type)))
|
|
|
|
#endif
|