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

Function strvec_pop

strvec.c:101–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101void strvec_pop(struct strvec *array)
102{
103 if (!array->nr)
104 return;
105 free((char *)array->v[array->nr - 1]);
106 array->v[array->nr - 1] = NULL;
107 array->nr--;
108}
109
110void strvec_split(struct strvec *array, const char *to_split)
111{

Callers 5

fwrite_wwwauthFunction · 0.85
updateFunction · 0.85

Calls

no outgoing calls

Tested by 2