#ifndef LOG_H #define LOG_H void startLog(char* filename); void logString(char* string); void logLine(char* string); void endLog(); #endif