MCPcopy Create free account
hub / github.com/defold/defold / URL_tostring

Function URL_tostring

engine/script/src/script_msg.cpp:90–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88 }
89
90 static int URL_tostring(lua_State *L)
91 {
92 dmMessage::URL* url = (dmMessage::URL*)lua_touserdata(L, 1);
93 char buffer[512];
94 UrlToString(url, buffer, sizeof(buffer));
95 lua_pushfstring(L, "%s: [%s]", SCRIPT_TYPE_NAME_URL, buffer);
96 return 1;
97 }
98
99 static int URL_concat(lua_State *L)
100 {

Callers

nothing calls this directly

Calls 3

lua_touserdataFunction · 0.85
UrlToStringFunction · 0.85
lua_pushfstringFunction · 0.85

Tested by

no test coverage detected