/* * ----------------------------------------------------- * CS2S03/SE2S03, November 2011 * Assignment 5, Question 4 * File: bufpriv.h * ----------------------------------------------------- * This file contains the private data for the editor * buffer class. * ----------------------------------------------------- */ /* Cell Structure */ struct cellT { char ch; cellT *next; cellT *prev; }; /* Instance variables */ cellT *start; cellT *cursor;