Add the libab prefix to free functions.

This commit is contained in:
2018-06-17 19:43:18 -07:00
parent f83b7d169c
commit 827dba9013
5 changed files with 27 additions and 27 deletions

View File

@@ -13,31 +13,31 @@
* Frees a libab_function.
* @param func the function to free.
*/
void free_function(void* func);
void libab_free_function(void* func);
/**
* Frees a libab_function_list.
* @param func_list the function list to free.
*/
void free_function_list(void* func_list);
void libab_free_function_list(void* func_list);
/**
* Frees a unit. This is a no-op.
* @param unit the unit to free.
*/
void free_unit(void* unit);
void libab_free_unit(void* unit);
/**
* Frees a parsetype.
* @param parsetype the parsetype to free.
*/
void free_parsetype(void* parsetype);
void libab_free_parsetype(void* parsetype);
/**
* Frees a table.
* @param table the table to free.
*/
void free_table(void* table);
void libab_free_table(void* table);
/**
* Frees a value.
* @param value the value to free.
*/
void free_value(void* value);
void libab_free_value(void* value);
#endif