edit.h
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.     Pirate Bulletin Board System
  3.     Copyright (C) 1990, Edward Luke, lush@Athena.EE.MsState.EDU
  4.     Eagles Bulletin Board System
  5.     Copyright (C) 1992, Raymond Rocker, rocker@rock.b11.ingr.com
  6.                         Guy Vega, gtvega@seabass.st.usm.edu
  7.                         Dominic Tynes, dbtynes@seabass.st.usm.edu
  8.     Firebird Bulletin Board System
  9.     Copyright (C) 1996, Hsien-Tsung Chang, Smallpig.bbs@bbs.cs.ccu.edu.tw
  10.                         Peng Piaw Foong, ppfoong@csie.ncu.edu.tw
  11.     
  12.     This program is free software; you can redistribute it and/or modify
  13.     it under the terms of the GNU General Public License as published by
  14.     the Free Software Foundation; either version 1, or (at your option)
  15.     any later version.
  16.     This program is distributed in the hope that it will be useful,
  17.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.     GNU General Public License for more details.
  20. */
  21. #define WRAPMARGIN (255)
  22. #define M_MARK  0x01
  23. #define M_ATTR0 0x01
  24. #define M_ATTR1 0x02
  25. #define M_ATTR2 0x04
  26. #define M_ATTR3 0x08
  27. #define M_ATTR4 0x10
  28. #define M_ATTR5 0x20
  29. #define M_ATTR6 0x40
  30. #define M_ATTR7 0x80
  31. struct textline {
  32.     struct textline *prev ;
  33.     struct textline *next ;
  34.     int  len ;
  35.     unsigned char attr;
  36.     char data[WRAPMARGIN + 1] ;
  37. } ;