odyssey/lib/ft_macro.h

14 lines
192 B
C
Raw Normal View History

#ifndef FT_MACRO_H_
#define FT_MACRO_H_
/*
2016-11-08 12:16:12 +00:00
* fluent.
*
* Cooperative multitasking engine.
*/
#define ft_container_of(ptr, t, f) \
((t*)((char*)(ptr) - __builtin_offsetof(t, f)))
#endif