(centry *C.git_config_entry)
| 44 | } |
| 45 | |
| 46 | func newConfigEntryFromC(centry *C.git_config_entry) *ConfigEntry { |
| 47 | return &ConfigEntry{ |
| 48 | Name: C.GoString(centry.name), |
| 49 | Value: C.GoString(centry.value), |
| 50 | Level: ConfigLevel(centry.level), |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | type Config struct { |
| 55 | doNotCompare |
no test coverage detected
searching dependent graphs…