You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
702 B
33 lines
702 B
/* Capstone Disassembly Engine */ |
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */ |
|
|
|
#ifndef CS_SSTREAM_H_ |
|
#define CS_SSTREAM_H_ |
|
|
|
typedef struct SStream { |
|
char buffer[512]; |
|
int index; |
|
} SStream; |
|
|
|
void SStream_Init(SStream *ss); |
|
|
|
void SStream_concat(SStream *ss, const char *fmt, ...); |
|
|
|
void SStream_concat0(SStream *ss, char *s); |
|
|
|
void printInt64Bang(SStream *O, int64_t val); |
|
|
|
void printInt64(SStream *O, int64_t val); |
|
|
|
void printInt32Bang(SStream *O, int32_t val); |
|
|
|
void printInt32(SStream *O, int32_t val); |
|
|
|
void printUInt32Bang(SStream *O, uint32_t val); |
|
|
|
void printUInt32(SStream *O, uint32_t val); |
|
|
|
// print number in decimal mode |
|
void printInt32BangDec(SStream *O, int32_t val); |
|
|
|
#endif
|
|
|