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

📄 telldir.c

📁 linux下用PCMCIA无线网卡虚拟无线AP的程序源码
💻 C
字号:
#include <errno.h>#include <unistd.h>#include "dirstream.h"off_t telldir(DIR * dir){	off_t offset;	if (!dir) {		__set_errno(EBADF);		return -1;	}	switch (dir->dd_getdents) {	case no_getdents:		/* We are running the old kernel. This is the starting offset		   of the next readdir(). */		offset = lseek(dir->dd_fd, 0, SEEK_CUR);		break;	case unknown:		/* readdir () is not called yet. but seekdir () may be called. */	case have_getdents:		/* The next entry. */		offset = dir->dd_nextoff;		break;	default:		__set_errno(EBADF);		offset = -1;	}	return offset;}

⌨️ 快捷键说明

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