11 lines
328 B
C
11 lines
328 B
C
#ifndef CUTES_TYPECLASS_HELPERS_H
|
|
#define CUTES_TYPECLASS_HELPERS_H
|
|
|
|
#define TC_FN_TYPECHECK(__Return, __Name, ...)\
|
|
__Return (*const __Name##_)(__VA_ARGS__) = __Name; (void)__Name##_
|
|
|
|
#define decl_typeclass_impl(__Typeclass, __Type)\
|
|
extern __Typeclass __Type##_as_##__Typeclass(__Type*);
|
|
|
|
#endif // !CUTES_TYPECLASS_HELPERS_H
|