Add the libab prefix to free functions.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user