mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 01:41:44 +03:00
16 lines
366 B
C
16 lines
366 B
C
#pragma once
|
|
|
|
#include "cBackend.h"
|
|
|
|
void missing_ffi();
|
|
|
|
int isUnique(Value *value);
|
|
void removeReuseConstructor(Value_Constructor *constr);
|
|
|
|
Value *apply_closure(Value *, Value *arg);
|
|
void push_Arglist(Value_Arglist *arglist, Value *arg);
|
|
|
|
int idris2_extractInt(Value *);
|
|
Value *trampoline(Value *closure);
|
|
Value *tailcall_apply_closure(Value *_clos, Value *arg);
|