Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/ed/setbuf.c @ 2609:9dd4f422aac7
Added NitrOS-9 ROM Kit from Cloud-9
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Tue, 31 Jan 2012 13:57:35 -0600 |
parents | bef1844de0dc |
children |
rev | line source |
---|---|
994 | 1 /* setbuf.c */ |
2 #include <stdio.h> | |
3 #include "tools.h" | |
4 #include "ed.h" | |
5 | |
6 relink(a, x, y, b) | |
7 LINE *a, *x, *y, *b; | |
8 { | |
9 x->l_prev = a; | |
10 y->l_next = b; | |
11 } | |
12 | |
13 clrbuf() | |
14 { | |
15 del(1, lastln); | |
16 } | |
17 | |
18 set_buf() | |
19 { | |
20 relink(&line0, &line0, &line0, &line0); | |
21 curln = lastln = 0; | |
22 } | |
23 |