2018-03-01 13:03:40 -05:00
|
|
|
/**
|
|
|
|
* @file script.h
|
|
|
|
* Provides script library for using calculator hardware
|
|
|
|
*/
|
|
|
|
|
2018-02-27 23:55:46 -05:00
|
|
|
#ifndef SCRIPT_H_
|
|
|
|
#define SCRIPT_H_
|
|
|
|
|
|
|
|
#include <parser.h>
|
|
|
|
|
2018-03-01 13:03:40 -05:00
|
|
|
/**
|
|
|
|
* Loads the library for the given interpreter.
|
|
|
|
* @param it the interpreter to use
|
|
|
|
*/
|
2018-02-27 23:55:46 -05:00
|
|
|
void script_loadlib(interpreter *it);
|
|
|
|
|
|
|
|
#endif // SCRIPT_H_
|