MCPcopy Create free account
hub / github.com/HyperDbg/HyperDbg / PrintTokenList

Function PrintTokenList

hyperdbg/script-engine/code/common.c:422–431  ·  view source on GitHub ↗

* @brief Prints each Token inside a TokenList * * @param TokenList * @return void */

Source from the content-addressed store, hash-verified

420 * @return void
421 */
422void
423PrintTokenList(PSCRIPT_ENGINE_TOKEN_LIST TokenList)
424{
425 PSCRIPT_ENGINE_TOKEN Token;
426 for (uintptr_t i = 0; i < TokenList->Pointer; i++)
427 {
428 Token = *(TokenList->Head + i);
429 PrintToken(Token);
430 }
431}
432
433/**
434 * @brief Adds Token to the last empty position of TokenList

Callers 3

ScriptEngineParseFunction · 0.85
CodeGenFunction · 0.85

Calls 1

PrintTokenFunction · 0.85

Tested by

no test coverage detected