MCPcopy Create free account
hub / github.com/NetHack/NetHack / bel_copy1

Function bel_copy1

src/end.c:1808–1820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1806}
1807
1808staticfn void
1809bel_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
1822char *
1823build_english_list(char *in)

Callers 1

build_english_listFunction · 0.85

Calls 1

isspaceFunction · 0.85

Tested by

no test coverage detected