Files
kst/kte/ark/file_buffer.c
2020-02-18 22:29:31 +00:00

11 lines
138 B
C

#include "defs.h"
void
init_buffer(struct buffer *buf)
{
/* put the cursor at the top of the file */
buf->curx = 0;
buf->cury = 0;
}