odyssey/sources/macro.h

17 lines
274 B
C
Raw Normal View History

2017-05-24 11:04:19 +00:00
#ifndef MM_MACRO_H
#define MM_MACRO_H
2017-03-21 10:56:02 +00:00
/*
* machinarium.
*
* cooperative multitasking engine.
*/
2017-07-10 13:28:01 +00:00
#define mm_container_of(ptr, type, field) \
((type*)((char*)(ptr) - __builtin_offsetof(type, field)))
2017-03-21 10:56:02 +00:00
#define mm_cast(type, ptr) \
((type)(ptr))
2017-05-24 11:04:19 +00:00
#endif /* MM_MACRO_H */