Make some functions public.

This commit is contained in:
2018-08-10 18:39:26 -07:00
parent b0c2eb5a5e
commit 4a058384c1
4 changed files with 32 additions and 13 deletions

View File

@@ -216,6 +216,14 @@ void libab_get_true_value(libab* ab, libab_ref* into);
* @param into the reference into which to store the false value.
*/
void libab_get_false_value(libab* ab, libab_ref* into);
/**
* Get the boolean value corresponding to val from this
* libab instance.
* @param ab the instance to get the value from.
* @param val the true or false value to represent.
* @param into the reference into which to store the value.
*/
void libab_get_bool_value(libab* ab, int val, libab_ref* into);
/**
* Executes the given string of code.