confd.cc

来自「南京航空航天大学开发的一个类Unix和Linux的操作系统,好不好看看就知道了,」· CC 代码 · 共 23 行

CC
23
字号
#include <lib/root.h>#include "confd.h"#include "condev.h"confd_t::~confd_t(){}int confd_t::read(void * buf, int count){	return condev->read(buf, count);}int confd_t::write(void * buf, int count){	return condev->write(buf, count);}int confd_t::ioctl(int cmd, ulong arg){	return condev->ioctl(cmd, arg);}

⌨️ 快捷键说明

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