MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / charString

Function charString

test/cffi/project/Project.cpp:254–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

252
253
254value charString(value inC0, value inC1, value inC2)
255{
256 buffer buf = alloc_buffer("A ");
257 buffer_append_char(buf,val_int(inC0));
258 buffer_append_char(buf,val_int(inC1));
259 buffer_append_char(buf,val_int(inC2));
260 return buffer_to_string(buf);
261}
262DEFINE_PRIM(charString, 3);
263
264

Callers

nothing calls this directly

Calls 4

alloc_bufferFunction · 0.85
buffer_append_charFunction · 0.85
buffer_to_stringFunction · 0.85
val_intFunction · 0.50

Tested by

no test coverage detected