1
0
mirror of https://github.com/sm64pc/sm64pc.git synced 2025-04-08 14:35:38 +02:00
sm64pc/include/helper_macros.h
2019-08-25 00:46:40 -04:00

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