Hadeed Ahmad
c10f4a243b
Got stuck on a bug for a while, fix was to check for errors when using system calls. Lesson learned.
7 lines
127 B
C
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
|