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

Function parse_one_token

diff.c:239–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237}
238
239static int parse_one_token(const char **arg, const char *token)
240{
241 const char *rest;
242 if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) {
243 *arg = rest;
244 return 1;
245 }
246 return 0;
247}
248
249static int parse_ws_error_highlight(const char *arg)
250{

Callers 1

parse_ws_error_highlightFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected