| 805 | } |
| 806 | |
| 807 | static const char *next_line(const char *str) |
| 808 | { |
| 809 | const char *nl = strchrnul(str, '\n'); |
| 810 | return nl + !!*nl; |
| 811 | } |
| 812 | |
| 813 | /* |
| 814 | * Return the position of the start of the last line. If len is 0, return -1. |
no outgoing calls
no test coverage detected