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

📄 blink.c

📁 MSYS在windows下模拟了一个类unix的终端
💻 C
字号:
/* * An extremely simple program to make the cursor blink in an xterm. * This is useful when the cursor is hard to spot in a highlighted file. * Start in the background: "blink&"  Stop by killing it. * Bram Moolenaar  980109  (based on an idea from John Lange). */#include <stdio.h>main(){	while (1)	{		printf("\e[?25h");		fflush(stdout);		usleep(400000);		/* on time */		printf("\e[?25l");		fflush(stdout);		usleep(250000);		/* off time */	}}

⌨️ 快捷键说明

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