Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/helper_macros.h
7854 views
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 // HELPER_MACROS_H
7
8