MCPcopy Create free account
hub / github.com/dillo-browser/dillo / appendPointer

Method appendPointer

lout/misc.hh:596–597  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

594 inline void appendInt(int n)
595 { char buf[32]; sprintf (buf, "%d", n); append (buf); }
596 inline void appendPointer(void *p)
597 { char buf[32]; sprintf (buf, "%p", p); append (buf); }
598 inline void appendBool(bool b) { append (b ? "true" : "false"); }
599 void appendNoCopy(char *str);
600 const char *getChars();

Callers 5

intoStringBufferMethod · 0.80
intoStringBufferMethod · 0.80
intoStringBufferMethod · 0.80
intoStringBufferMethod · 0.80
intoStringBufferMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected