view 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
line wrap: on
line source

/*      setbuf.c        */
#include <stdio.h>
#include "tools.h"
#include "ed.h"

relink(a, x, y, b)
LINE *a, *x, *y, *b;
{
  x->l_prev = a;
  y->l_next = b;
}

clrbuf()
{
  del(1, lastln);
}

set_buf()
{
  relink(&line0, &line0, &line0, &line0);
  curln = lastln = 0;
}