11 lines
138 B
C
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;
|
|
}
|