| 1806 | } |
| 1807 | |
| 1808 | staticfn void |
| 1809 | bel_copy1(char **inp, char *out) |
| 1810 | { |
| 1811 | char *in = *inp; |
| 1812 | |
| 1813 | out += strlen(out); /* eos() */ |
| 1814 | while (*in && isspace((uchar) *in)) |
| 1815 | in++; |
| 1816 | while (*in && !isspace((uchar) *in)) |
| 1817 | *out++ = *in++; |
| 1818 | *out = '\0'; |
| 1819 | *inp = in; |
| 1820 | } |
| 1821 | |
| 1822 | char * |
| 1823 | build_english_list(char *in) |
no test coverage detected