| 651 | } |
| 652 | |
| 653 | static inline int upstream_mark(const char *string, int len) |
| 654 | { |
| 655 | const char *suffix[] = { "@{upstream}", "@{u}" }; |
| 656 | return at_mark(string, len, suffix, ARRAY_SIZE(suffix)); |
| 657 | } |
| 658 | |
| 659 | static inline int push_mark(const char *string, int len) |
| 660 | { |
no test coverage detected