Hash :
5d4cd003
Author :
Date :
2011-03-28T17:02:45
#ifndef INCLUDE_tag_h__
#define INCLUDE_tag_h__
struct git_config {
char *file_path;
struct {
gitfo_buf buffer;
char *read_ptr;
int line_number;
int eof;
} reader;
git_hashtable *vars;
};
typedef enum {
GIT_VAR_INT,
GIT_VAR_BOOL,
GIT_VAR_STR
} git_config_type;
struct git_config_var {
git_config_type type;
char *name;
union {
unsigned char boolean;
long integer;
char *string;
} value;
};
#endif