Begin working on the lexer.

This commit is contained in:
2018-02-10 13:52:33 -08:00
parent 29ae1ce5b4
commit 10652048ab
4 changed files with 60 additions and 0 deletions

15
include/libabacus.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef LIBABACUS_H
#define LIBABACUS_H
/**
* An enum that represents the outcomes of
* libabacus functions that can fail.
*/
enum libab_result {
LIBAB_SUCCESS,
LIBAB_MALLOC
};
typedef enum libab_result libab_result;
#endif