fat.h

来自「Due to an increase in demand for and que」· C头文件 代码 · 共 27 行

H
27
字号
/*
 * fat.h
 *
 * This file is part of the BETA version of DISKLIB
 * Copyright (C) 1998, Gregg Jennings
 *
 * See README.TXT for information about re-distribution.
 * See DISKLIB.TXT for information about usage.
 *
 */

#include <limits.h>

#if LONG_MAX > INT_MAX
#define NEED_LARGE
#define LARGE __huge                /* a necessary evil for 16 bit DOS */
#else
#define LARGE
#endif

unsigned short LARGE *readfat(int disk, unsigned short nclusters, long sector,
                              int secsfat);
unsigned short searchfat12(int disk, int nclusters, long sector, int secsfat,
                           unsigned short value);
unsigned short searchfat16(int disk, unsigned short nclusters, long sector,
                           int secsfat, unsigned short value);

⌨️ 快捷键说明

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