Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
kilo/include/kilo.h
Hadeed Ahmad fc5e50e4db Refactor a lot
Doesn't compile yet. Dreading the time when it does and there's an error
in the hundreds of lines I changed. For future: commit small changes
that can be compiled and tested atomically.
2023-09-08 21:55:36 +05:00

24 lines
425 B
C

#ifndef KILO_H
#define KILO_H
#define KILO_TAB_STOP 4
#include <termios.h>
#include <time.h>
struct editor_state {
int screenrows, screencols;
int quit_times;
struct buffer *current_buf;
struct termios orig_termios;
char message[256];
time_t message_time;
};
extern struct editor_state E;
void editor_set_message(const char *fmt, ...);
char *editor_prompt(const char *prompt);
#endif // KILO_H