Begin working on the lexer.
This commit is contained in:
15
include/libabacus.h
Normal file
15
include/libabacus.h
Normal 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
|
||||
Reference in New Issue
Block a user