14 lines
226 B
C
14 lines
226 B
C
|
|
#ifndef STRUCT_BUILDIN_LAMBDA_VALUE
|
|
#define STRUCT_BUILDIN_LAMBDA_VALUE
|
|
|
|
#include <builtins/typedefs/builtin_funcptr_t.h>
|
|
|
|
struct builtin_lambda_value
|
|
{
|
|
struct string* name;
|
|
|
|
builtin_funcptr_t funcptr;
|
|
};
|
|
|
|
#endif
|