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

Function pline_dir

src/pline.c:113–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113void
114pline_dir(int dir, const char *line, ...)
115{
116 va_list the_args;
117
118 set_msg_dir(dir);
119
120 va_start(the_args, line);
121 vpline(line, the_args);
122 va_end(the_args);
123}
124
125void
126pline_xy(coordxy x, coordxy y, const char *line, ...)

Callers 2

test_moveFunction · 0.85
dobuzzFunction · 0.85

Calls 2

set_msg_dirFunction · 0.85
vplineFunction · 0.85

Tested by 1

test_moveFunction · 0.68