lambda-calc-1/value/builtin_lambda/struct.h
2025-01-13 20:36:07 -06:00

27 lines
449 B
C

#include <stddef.h>
#include "../struct.h"
struct booleans;
struct builtin_lambda_value;
struct value;
struct builtin_lambda_value
{
struct value super;
struct string* name;
struct value* (*funcptr)(
struct booleans* booleans,
struct builtin_lambda_value* prev,
struct value* tail);
size_t number_of_parameters;
struct value* value;
struct builtin_lambda_value* prev;
};