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

📄 kill.c

📁 teco编辑器源码
💻 C
字号:
#include <ctype.h>
#include <stdio.h>
#include <string.h>

kill()
{
#include "teco.h"

	int tmp;				/* Scratch variable     */
	int wrk;				/* Another scratch var. */

	tmp=bufptx;				/*  ...end of dlt */
	if (number < 1) while (1) {		/* delete backwrd */
		if (!bufptx) goto axe;
		if (toascii(buffer[--bufptx]) == 13) {
			if (! number++) {
				if (toascii(buffer[bufptx+1]) == 10) {
					bufptx++;
				}
				goto axe;
			}
		}
	}
	if (number > 0) while (1) {		/* delete forward */
		if (tmp+1 > bufptr) goto axe;
		if (toascii(buffer[++tmp]) == 13) {
			if (toascii(buffer[tmp+1]) == 10) ++tmp;
			if (! --number) goto axe;
		}
	}

axe:	memcpy(&buffer[bufptx+1],&buffer[tmp+1],bufptr-bufptx);
	bufptr=bufptr+bufptx-tmp;		/* Show deleted.. */
	if (bufptr < bufptx) {			/* Impose  sanity */
		bufptx=bufptr;			/*  ...stop this  */
	}
	return;					/* Eat more stuff */
}

⌨️ 快捷键说明

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