| 25 | #include "bind-mount.h" |
| 26 | |
| 27 | static char * |
| 28 | skip_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 | |
| 39 | static char * |
| 40 | unescape_inline (char *escaped) |