MBED port of https://github.com/ys1382/filagree . The only change is adding #define MBED
interpret.h@0:1a89e28dea91, 2012-05-30 (annotated)
- Committer:
- yusufx
- Date:
- Wed May 30 21:13:01 2012 +0000
- Revision:
- 0:1a89e28dea91
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yusufx | 0:1a89e28dea91 | 1 | // |
yusufx | 0:1a89e28dea91 | 2 | // interpret.h |
yusufx | 0:1a89e28dea91 | 3 | // filagree |
yusufx | 0:1a89e28dea91 | 4 | // |
yusufx | 0:1a89e28dea91 | 5 | |
yusufx | 0:1a89e28dea91 | 6 | #ifndef INTERPRET_H |
yusufx | 0:1a89e28dea91 | 7 | #define INTERPRET_H |
yusufx | 0:1a89e28dea91 | 8 | |
yusufx | 0:1a89e28dea91 | 9 | struct variable *interpret_file(const struct byte_array *filename, bridge *callback); |
yusufx | 0:1a89e28dea91 | 10 | struct variable *interpret_string(const char *str, bridge *callback); |
yusufx | 0:1a89e28dea91 | 11 | |
yusufx | 0:1a89e28dea91 | 12 | #endif // INTERPRET_H |