mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 18:38:58 +00:00
Rename git_config_{type,var} to git_cvar{_type,}
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
This commit is contained in:
parent
05314b5bf4
commit
238df5590c
@ -126,7 +126,7 @@ typedef struct git_index git_index;
|
||||
typedef struct git_config git_config;
|
||||
|
||||
/** Memory representation of a config variable */
|
||||
typedef struct git_config_var git_config_var;
|
||||
typedef struct git_cvar git_cvar;
|
||||
|
||||
/** Time in a signature */
|
||||
typedef struct git_time {
|
||||
|
@ -18,10 +18,10 @@ typedef enum {
|
||||
GIT_VAR_INT,
|
||||
GIT_VAR_BOOL,
|
||||
GIT_VAR_STR
|
||||
} git_config_type;
|
||||
} git_cvar_type;
|
||||
|
||||
struct git_config_var {
|
||||
git_config_type type;
|
||||
struct git_cvar {
|
||||
git_cvar_type type;
|
||||
char *name;
|
||||
union {
|
||||
unsigned char boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user