MCPcopy Index your code
hub / github.com/NetHack/NetHack / upstart

Function upstart

src/hacklib.c:113–119  ·  view source on GitHub ↗

convert first character of a string to uppercase */

Source from the content-addressed store, hash-verified

111
112/* convert first character of a string to uppercase */
113char *
114upstart(char *s)
115{
116 if (s)
117 *s = highc(*s);
118 return s;
119}
120
121/* capitalize first letter of every word in a string (in place) */
122char *

Callers 15

updateStatsMethod · 0.85
curs_stat_condsFunction · 0.85
init_menu_nhcolorsFunction · 0.85
container_contentsFunction · 0.85
doclassdiscoFunction · 0.85
alreadynamedFunction · 0.85
do_mgivennameFunction · 0.85
christen_orcFunction · 0.85
maybe_absorb_itemFunction · 0.85
potionhitFunction · 0.85
steal_itFunction · 0.85
mcast_insectsFunction · 0.85

Calls 1

highcFunction · 0.85

Tested by

no test coverage detected