auto_refactor.py |
T: typedef_name S: struct_name N: struct_node
T S N
case 1: o o o
typedef struct P {
int u;
} K;
T S N
case 2: o o x
typedef struct P K;
T S N
case 3: x o o
struct P {
int u;
};
T S N
case 4: o x o
typedef struct {
int u;
} K;
|
29569 |
av1_preprocess.py |
|
4422 |
c_files |
|
|
test_auto_refactor.py |
|
26655 |