help.c
上传用户: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.     This program is free software; you can redistribute it and/or modify
  12.     it under the terms of the GNU General Public License as published by
  13.     the Free Software Foundation; either version 1, or (at your option)
  14.     any later version.
  15.     This program is distributed in the hope that it will be useful,
  16.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.     GNU General Public License for more details.
  19. */
  20. /*
  21. $Id: help.c,v 1.1 2000/01/15 01:45:28 edwardc Exp $
  22. */
  23. #include "bbs.h"
  24. void
  25. show_help(fname)
  26. char   *fname;
  27. {
  28. ansimore(fname, YEA);
  29. clear();
  30. }
  31. /*void
  32. standhelp( mesg )
  33. char    *mesg;
  34. {
  35.     prints("");
  36.     prints( mesg ) ;
  37.     prints("");
  38. }*/
  39. int
  40. mainreadhelp()
  41. {
  42. show_help("help/mainreadhelp");
  43. return FULLUPDATE;
  44. }
  45. int
  46. mailreadhelp()
  47. {
  48. show_help("help/mailreadhelp");
  49. return FULLUPDATE;
  50. }
  51. void
  52. Help()
  53. {
  54. currentuser.flags[0] ^= CURSOR_FLAG;
  55. clear();
  56. }