#include <sys/types.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <fcntl.h>
#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include <stdarg.h>
#include <errno.h>
#include <ctype.h>
#include <assert.h>
#include <pthread.h>
#include <object.h>
#include <list.h>
#include <vfs.h>
#include <vfs0.h>
#include <fat0.h>
#include <fat.h>
#include <fat_cache.h>
#include <debug.h>
Go to the source code of this file.
|
| #define | IS_DOT_DOTDOT(lfname) lfname[0] == '.' && (!lfname[1] || (lfname[1] == '.' && !lfname[2])) |
| |
| #define | NEXT_CLUSTER(fat, c) |
| |
| #define IS_DOT_DOTDOT |
( |
|
lfname) | |
lfname[0] == '.' && (!lfname[1] || (lfname[1] == '.' && !lfname[2])) |
Definition at line 55 of file fat.c.
| #define NEXT_CLUSTER |
( |
|
fat, |
|
|
|
c |
|
) |
| |
Value:do { \
(c) = get_cluster_entry_value(&((fat)->
bpb), (fat)->table, (c)); \
} while (0)
Definition at line 26 of file fat.c.