Give StackPushResult enumerators shorter names
This commit is contained in:
parent
8a13b5d120
commit
3d516aeeec
4 changed files with 34 additions and 34 deletions
|
|
@ -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 *);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue