⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 winsch.c

📁 minux的源代码,一个非常小的操作系统
💻 C
字号:
#include <curses.h>
#include "curspriv.h"

/* Winsch() inserts character 'c' at the cursor position in
   window 'win'. The cursor is advanced.
*/

int winsch(win, c)
WINDOW *win;
char c;
{
  int *temp1;
  int *temp2;
  int *end;
  int x = win->_curx;
  int y = win->_cury;
  int maxx = win->_maxx;

  if ((c < ' ') && (c == '\n' || c == '\r' || c == '\t' || c == '\b'))
	return(waddch(win, c));
  end = &win->_line[y][x];
  temp1 = &win->_line[y][maxx];
  temp2 = temp1 - 1;
  if (c < ' ')			/* if CTRL-char make space for 2 */
	temp2--;
  while (temp1 > end) *temp1-- = *temp2--;
  win->_maxchng[y] = maxx;
  if ((win->_minchng[y] == _NO_CHANGE) || (win->_minchng[y] > x))
	win->_minchng[y] = x;
  return(waddch(win, c));	/* fixes CTRL-chars too */
}				/* winsch */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -