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/cursor.h
Hadeed Ahmad c10f4a243b Add support to handle terminal resizing
Got stuck on a bug for a while, fix was to check for errors when using
system calls. Lesson learned.
2023-09-26 06:42:36 +05:00

7 lines
127 B
C

#ifndef CURSOR_H
#define CURSOR_H
struct buffer;
void cursor_move(struct buffer *buffer, int dx, int dy);
#endif // CURSOR_H