aboutsummaryrefslogtreecommitdiff
path: root/include/csxbind.h
blob: 84a73d95fc9762d1883d5e0c3d9611062cffdd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef CSX_INCLUDED_BIND
#define CSX_INCLUDED_BIND


#include "csx.h"


extern char *name;
extern char *pair;
extern char *str;
extern char *_int;
extern char *base;
extern char *fn;
extern char *sx;
extern char *set;
extern char *_isset;
extern char *sethead;
extern char *settail;
extern char *head;
extern char *tail;
extern char *qt;
extern char *same;
extern char *type;
extern char *_do;
extern char *_if;
extern char *_plus;
extern char *_star;
extern char *neg;
extern char *div;
extern char *mod;
extern char *_less;
extern char *_more;
extern char *out;
extern char *in;
extern char *len;
extern char *run;
extern char *context;
extern char *newcontext;
extern char *_exit;

void init();

csxpair *L(void *head, ...);
csxpair *D(void *a, void *b, void *c, ...);
csxpair *P(void *head, void *tail);
char    *N(const char *name);
char    *S(const char *str);
int     *I(int num);

void *R(void *expression);

csxbase *newbase(csxbase base);


#endif