MCPcopy Create free account
hub / github.com/baldurk/renderdoc / addchars

Function addchars

renderdoc/strings/utf8printf.cpp:97–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95}
96
97void addchars(char *&output, size_t &actualsize, char *end, size_t num, char c)
98{
99 actualsize += num;
100 for(size_t i = 0; output != end && i < num; i++)
101 *(output++) = c;
102}
103
104void appendstring(char *&output, size_t &actualsize, char *end, const char *str, size_t len)
105{

Callers 4

PrintIntegerFunction · 0.85
PrintFloat0Function · 0.85
PrintFloatFunction · 0.85
formatargumentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected