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

📄 schar_io.c

📁 linux字符设备驱动程序schar 内附makefile
💻 C
字号:
#include <stdio.h>#include <fcntl.h>#include <sys/ioctl.h>#include "schar.h"int main(int argc, char *argv[]){	int fd = open("/dev/schar", O_RDWR);	/* complain if the open failed */	if (fd == -1) {		perror("open");		return 1;	}	/* complain if the ioctl call failed */	if (ioctl(fd, SCHAR_TOGGLE_DEBUG) == -1) {		perror("ioctl");		return 2;	}	printf("Schar debug toggled\n");	return 0;}

⌨️ 快捷键说明

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