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
2023-09-09 01:38:26 +05:00

10 lines
149 B
C

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