#ifndef _LOG_H_
	#define _LOG_H_
	
	
void log_init(const char *path);
void log_integer(const char *prev_text, const int data);
	
#endif
