MCPcopy Create free account
hub / github.com/capstone-engine/capstone / SStream_concat0

Function SStream_concat0

SStream.c:31–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31void SStream_concat0(SStream *ss, const char *s)
32{
33#ifndef CAPSTONE_DIET
34 unsigned int len = (unsigned int) strlen(s);
35
36 SSTREAM_OVERFLOW_CHECK(ss, len);
37 memcpy(ss->buffer + ss->index, s, len);
38 ss->index += len;
39 ss->buffer[ss->index] = '\0';
40#endif
41}
42
43void SStream_concat1(SStream *ss, const char c)
44{

Callers 15

printRegImmShiftFunction · 0.85
printRegNameFunction · 0.85
ARM_printInstFunction · 0.85
printSORegRegOperandFunction · 0.85
printAddrModeTBBFunction · 0.85
printAddrModeTBHFunction · 0.85
printPostIdxRegOperandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…