MBED port of https://github.com/ys1382/filagree . The only change is adding #define MBED

Dependents:   filagree_test

sys.h

Committer:
yusufx
Date:
2012-05-30
Revision:
0:1a89e28dea91

File content as of revision 0:1a89e28dea91:

#ifndef SYS_H
#define SYS_H

#include "vm.h"

void print();
void save();
void load();
void rm();

struct string_func
{
    const char* name;
    bridge* func;
};

struct variable *func_map(struct Context *context);

struct variable *builtin_method(struct Context *context,
								struct variable *indexable,
                                const struct variable *index);

#endif // SYS_H