MCPcopy Create free account
hub / github.com/ZDoom/Raze / AddHex

Method AddHex

source/common/scripting/frontend/ast.cpp:198–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196 Add(buf, len);
197 }
198 void AddHex(unsigned x)
199 {
200 char buf[10];
201 size_t len = mysnprintf(buf, countof(buf), "%08x", x);
202 Add(buf, len);
203 }
204 void AddFloat(double f, bool single)
205 {
206 char buf[32];

Callers 8

PrintClassFunction · 0.80
PrintFuncPtrParamDeclFunction · 0.80
PrintFuncPtrTypeFunction · 0.80
PrintFuncParamDeclFunction · 0.80
PrintDeclaratorFunction · 0.80
PrintVarDeclaratorFunction · 0.80
PrintFuncDeclaratorFunction · 0.80
PrintDeclFlagsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected