9 lines
133 B
C
9 lines
133 B
C
|
#ifndef CURSOR_H
|
||
|
#define CURSOR_H
|
||
|
|
||
|
#include "buffer.h"
|
||
|
|
||
|
void cursor_move(struct buffer *buffer, int dx, int dy);
|
||
|
|
||
|
#endif // CURSOR_H
|