MCPcopy Create free account
hub / github.com/assaultcube/AC / strtoupper

Function strtoupper

source/src/tools.cpp:466–475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464}
465
466void strtoupper(char *t, const char *s)
467{
468 if(!s) s = t;
469 while(*s)
470 {
471 *t = toupper(*s);
472 t++; s++;
473 }
474 *t = '\0';
475}
476
477const char *atoip(const char *s, enet_uint32 *ip)
478{

Callers 7

loopiFunction · 0.85
checkblacklistFunction · 0.85
initMethod · 0.85
loopvFunction · 0.85
searchnicknameFunction · 0.85
matchplayernameFunction · 0.85
favcatcheckkeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected