mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-32150: Expand tabs to spaces in C files. (#4583)
This commit is contained in:
parent
08d2b86a10
commit
598ceae876
27 changed files with 213 additions and 213 deletions
|
@ -16,12 +16,12 @@ typedef struct rotating_node_s rotating_node_t;
|
|||
typedef int (*rotating_tree_enum_fn) (rotating_node_t *node, void *arg);
|
||||
|
||||
struct rotating_node_s {
|
||||
void *key;
|
||||
rotating_node_t *left;
|
||||
rotating_node_t *right;
|
||||
void *key;
|
||||
rotating_node_t *left;
|
||||
rotating_node_t *right;
|
||||
};
|
||||
|
||||
void RotatingTree_Add(rotating_node_t **root, rotating_node_t *node);
|
||||
rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
|
||||
int RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn,
|
||||
void *arg);
|
||||
void *arg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue