MBED port of https://github.com/ys1382/filagree . The only change is adding #define MBED
Diff: interpret.h
- Revision:
- 0:1a89e28dea91
diff -r 000000000000 -r 1a89e28dea91 interpret.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/interpret.h Wed May 30 21:13:01 2012 +0000 @@ -0,0 +1,12 @@ +// +// interpret.h +// filagree +// + +#ifndef INTERPRET_H +#define INTERPRET_H + +struct variable *interpret_file(const struct byte_array *filename, bridge *callback); +struct variable *interpret_string(const char *str, bridge *callback); + +#endif // INTERPRET_H