| 844 | /* Read the word starting from *str */ |
| 845 | |
| 846 | static char *get_word(char **str) |
| 847 | { |
| 848 | char *start= *str; |
| 849 | DBUG_ENTER("get_word"); |
| 850 | |
| 851 | *str= find_end_of_word(start); |
| 852 | DBUG_RETURN(my_strndup(start, (uint) (*str - start), |
| 853 | MYF(MY_WME | MY_FAE))); |
| 854 | } |
| 855 | |
| 856 | |
| 857 | /* |
no test coverage detected