You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* @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_
|