Give StackPushResult enumerators shorter names

This commit is contained in:
Max Brunsfeld 2016-03-03 10:20:05 -08:00
parent 8a13b5d120
commit 3d516aeeec
4 changed files with 34 additions and 34 deletions

View file

@ -21,14 +21,14 @@ typedef struct {
int head_index;
} StackSlice;
typedef enum {
StackPushResultFailed,
StackPushResultMerged,
StackPushResultContinued,
} StackPushResult;
typedef Array(StackSlice) StackSliceArray;
typedef enum {
StackPushFailed,
StackPushMerged,
StackPushContinued,
} StackPushResult;
typedef int (*TreeSelectionFunction)(void *, TSTree *, TSTree *);
/*