Lucciefr
Lua code caving, injection and exploration framework
logstdio.h
Go to the documentation of this file.
1 
3 #ifndef LOGSTDIO_H
4 #define LOGSTDIO_H
5 
6 #include "msgpack.h"
7 #include <stdio.h>
8 
9 void log_text(FILE *stream, msgpack_object *msg);
10 void log_stdio(const char *filename);
11 
12 #endif // LOGSTDIO_H
void log_stdio(const char *filename)
Initialize stdio logging.
Definition: logstdio.c:131
void log_text(FILE *stream, msgpack_object *msg)
output MessagePack object to stream in text format
Definition: logstdio.c:19