MCPcopy Create free account
hub / github.com/ioi/isolate / cf_entry

Function cf_entry

config.c:96–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96static void
97cf_entry(char *key, char *val)
98{
99 char *dot = strchr(key, '.');
100 if (!dot)
101 cf_entry_toplevel(key, val);
102 else
103 {
104 *dot++ = 0;
105 cf_entry_compound(key, dot, val);
106 }
107}
108
109static bool
110parse_ugid(const char *src, int *dest)

Callers 1

cf_parseFunction · 0.85

Calls 2

cf_entry_toplevelFunction · 0.85
cf_entry_compoundFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…