MCPcopy Create free account
hub / github.com/containers/bubblewrap / skip_token

Function skip_token

bind-mount.c:27–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25#include "bind-mount.h"
26
27static char *
28skip_token (char *line, bool eat_whitespace)
29{
30 while (*line != ' ' && *line != '\n')
31 line++;
32
33 if (eat_whitespace && *line == ' ')
34 line++;
35
36 return line;
37}
38
39static char *
40unescape_inline (char *escaped)

Callers 1

parse_mountinfoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected