* @brief Find the start of the next word in a string * * @param[in] cp Pointer to the string to search * * @return char* Pointer to the first non-space character in the string * * @note Skips leading whitespace characters and returns a pointer to the first * non-whitespace character. */
| 664 | * non-whitespace character. |
| 665 | */ |
| 666 | static char *_find_word(char *cp) |
| 667 | { |
| 668 | for (; (*cp == ' ') || (*cp == '\t'); cp++) |
| 669 | ; |
| 670 | return cp; |
| 671 | } |
| 672 | |
| 673 | /** |
| 674 | * @brief Seperate words in a string and get the next word |
no outgoing calls
no test coverage detected