10 lines
194 B
C
10 lines
194 B
C
|
|
#include <builtins/typedefs/builtin_funcptr_t.h>
|
|
|
|
struct gc;
|
|
struct string;
|
|
|
|
struct value* new_builtin_lambda_value(
|
|
struct gc* gc,
|
|
struct string* name,
|
|
builtin_funcptr_t funcptr);
|