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

📄 linkcount.c

📁 存取UDF格式的DVD光盘的驱动程序
💻 C
字号:
#include <stdio.h>#include "chkudf.h"#include "protos.h"int TestLinkCount(void){  UINT32 i;  printf("\n--Testing link counts.\n");  for (i = 0; i < ICBlist_len; i++) {    if (ICBlist[i].Link != ICBlist[i].LinkRec) {      printf("**ICB at %04x:%08x has a link count of %d, found %d link%s.\n",             ICBlist[i].Ptn, ICBlist[i].LBN, ICBlist[i].LinkRec,              ICBlist[i].Link, ICBlist[i].Link == 1 ? "" : "s");    }  }  return 0;}

⌨️ 快捷键说明

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