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

Function c_eos

src/hacklib.c:202–208  ·  view source on GitHub ↗

version of eos() which takes a const* arg and returns that result */

Source from the content-addressed store, hash-verified

200
201/* version of eos() which takes a const* arg and returns that result */
202const char *
203c_eos(const char *s)
204{
205 while (*s)
206 s++; /* s += strlen(s); */
207 return s;
208}
209
210/* determine whether 'str' starts with 'chkstr', possibly ignoring case;
211 * panics on huge strings */

Callers 3

sound_speakFunction · 0.85
make_converted_nameFunction · 0.85
config_erraddFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected