aboutsummaryrefslogtreecommitdiffstats
path: root/include/script.h
blob: ab5fa7e3f6b77f67fe778ed7bacea3106dd641c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @file script.h
 * Provides script library for using calculator hardware
 */

#ifndef SCRIPT_H_
#define SCRIPT_H_

#include <parser.h>

/**
 * Loads the library for the given interpreter.
 * @param it the interpreter to use
 */
void script_loadlib(instance *it);

#endif // SCRIPT_H_