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.
17 lines
298 B
17 lines
298 B
11 years ago
|
/* Capstone Disassembler Engine */
|
||
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
|
||
|
|
||
|
#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, ...);
|
||
|
|
||
|
#endif
|