provide a function to access the name and extension as a single array as

opposed depend on array index overflow.
This commit is contained in:
christos 2013-10-20 00:01:55 +00:00
parent f0a3fd2aff
commit de0d394bfe
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: direntry.h,v 1.6 2013/01/26 00:21:49 christos Exp $ */
/* $NetBSD: direntry.h,v 1.7 2013/10/20 00:01:55 christos Exp $ */
/*-
* Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@ -78,6 +78,12 @@ struct direntry {
u_int8_t deFileSize[4]; /* size of file in bytes */
};
static __inline uint8_t
msdos_dirchar(const struct direntry *de, size_t i) {
return i < sizeof(de->deName) ? de->deName[i] :
de->deExtension[i - sizeof(de->deName)];
}
/*
* Structure of a Win95 long name directory entry
*/