kst/kte/file_buffer.c

11 lines
138 B
C
Raw Normal View History

2020-02-12 22:28:34 +00:00
#include "defs.h"
void
init_buffer(struct buffer *buf)
{
/* put the cursor at the top of the file */
buf->curx = 0;
buf->cury = 0;
}