thrive/log.h

20 lines
256 B
C
Raw Permalink Normal View History

2025-01-02 20:57:00 -05:00
#ifndef _FD_LOG_
#define _FD_LOG_
2024-08-30 06:27:14 -04:00
typedef struct Log Log;
#include "input.h"
struct Log {
2024-08-30 06:27:14 -04:00
char** lines;
int line_count;
Input *input;
};
2024-08-30 06:27:14 -04:00
Log *create_log(void);
void draw_log(Log*);
void push_line_to_log(Log*, char*);
2025-01-02 20:57:00 -05:00
void free_log(Log*);
2024-08-30 06:27:14 -04:00
#endif