Rename header files.

This commit is contained in:
2018-02-11 22:32:42 -08:00
parent f67b98d7a6
commit 74034c7b76
10 changed files with 10 additions and 10 deletions

21
include/util.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef LIBABACUS_UTIL_H
#define LIBABACUS_UTIL_H
#include "libds.h"
#include "liblex.h"
#include "result.h"
/**
* Converts a result code from liblex to libabacus.
* @param to_convert the code to convert.
* @return the libabacus equivalent of the error code.
*/
libab_result libab_convert_lex_result(liblex_result to_convert);
/**
* Converts a result code from libds to libabacus.
* @param to_convert the code to convert.
* @return the libabacus equivalent of the error code.
*/
libab_result libab_convert_ds_result(libds_result to_convert);
#endif