diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-01 13:03:40 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-01 13:03:40 -0500 |
commit | 51b884c44c858aa56aae6675a2c3a8b2d882768e (patch) | |
tree | af052ed484d44e6594b18f01a4edceabd99b852c /include/script.h | |
parent | 4614429f5751e14e37ceedb7130b7a829c89476a (diff) |
keypad support, making stuff good
Diffstat (limited to 'include/script.h')
-rw-r--r-- | include/script.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/script.h b/include/script.h index dc8c590..7901c9c 100644 --- a/include/script.h +++ b/include/script.h @@ -1,8 +1,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(interpreter *it); #endif // SCRIPT_H_ |