MCPcopy Index your code
hub / github.com/git/git / column_config

Function column_config

column.c:318–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318static int column_config(const char *var, const char *value,
319 const char *key, unsigned int *colopts)
320{
321 if (!value)
322 return config_error_nonbool(var);
323 if (parse_config(colopts, value))
324 return error("invalid column.%s mode %s", key, value);
325 return 0;
326}
327
328int git_column_config(const char *var, const char *value,
329 const char *command, unsigned int *colopts)

Callers 1

git_column_configFunction · 0.70

Calls 3

config_error_nonboolFunction · 0.85
errorFunction · 0.85
parse_configFunction · 0.70

Tested by

no test coverage detected