blob: 67d062f1a85f44ca22be1147fdf74b2a2dbac586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* fornax - distributed network
*
* by team teso
*
* script functions
*/
#ifndef FNX_FUNCTIONLIST_H
#define FNX_FUNCTIONLIST_H
#include "symbol.h"
int f_listen (sym_elem **sl); /* net.listen */
int node_self (sym_elem **stab); /* sys.self */
int tt_schedule (sym_elem **stab); /* time.schedule */
int tt_erase (sym_elem **stab); /* time.erase */
#endif
|