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

Function PushTableLogChar

engine/script/src/script_table.cpp:871–878  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869 }
870
871 void PushTableLogChar(PushTableLogger& logger, char c)
872 {
873 logger.m_Log[logger.m_Cursor++] = c;
874 if (logger.m_Cursor > logger.m_Size) {
875 logger.m_Size = logger.m_Cursor;
876 }
877 logger.m_Cursor = logger.m_Cursor % PUSH_TABLE_LOGGER_CAPACITY;
878 }
879
880 void PushTableLogString(PushTableLogger& logger, const char* s)
881 {

Callers 2

PushTableLogStringFunction · 0.85
TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68