Super Mario 64 Source
A Super Mario 64 decompilation, brought to you by a bunch of clever folks.
helper_macros.h
Go to the documentation of this file.
1 #ifndef _HELPER_MACROS_H
2 #define _HELPER_MACROS_H
3 
4 #define LIST_NEXT_ITEM(curItem, type) ((type *)((s32)curItem + sizeof(type)))
5 
6 #endif