MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / l_message

Function l_message

3rd/lua-5.4.3/src/lua.c:109–112  ·  view source on GitHub ↗

** Prints an error message, adding the program name in front of it ** (if present) */

Source from the content-addressed store, hash-verified

107** (if present)
108*/
109static void l_message (const char *pname, const char *msg) {
110 if (pname) lua_writestringerror("%s: ", pname);
111 lua_writestringerror("%s\n", msg);
112}
113
114
115/*

Callers 3

reportFunction · 0.85
l_printFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected