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

Function puts

outdated/sys/wince/celib.c:848–854  ·  view source on GitHub ↗

int __cdecl putchar(int);

Source from the content-addressed store, hash-verified

846
847// int __cdecl putchar(int);
848int __cdecl puts(const char *s)
849{
850 TCHAR wbuf[4096];
851 NH_A2W(s, wbuf, 4096);
852 MessageBox(NULL, wbuf, _T("stdout"), MB_OK);
853 return 0;
854}
855
856FILE *__cdecl _getstdfilex(int desc)
857{

Callers 15

tty_raw_printFunction · 0.85
tty_raw_print_boldFunction · 0.85
PutStrMethod · 0.85
ClearMethod · 0.85
DisplayMethod · 0.85
CursorToMethod · 0.85
PutStrMethod · 0.85
StartMenuMethod · 0.85
AddMenuMethod · 0.85
EndMenuMethod · 0.85
SelectMenuMethod · 0.85
ClipAroundMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected