author | R. Bernstein <rocky@gnu.org> | 2023年04月02日 12:18:21 -0400 |
---|---|---|
committer | R. Bernstein <rocky@gnu.org> | 2023年04月02日 12:18:21 -0400 |
commit | f3097ebd1e035858b4f8678b379948700a69388c (patch) | |
tree | 7c46b823ff1321f48b7d19b9466466c9a91a1e07 | |
parent | a5935e934e313a601dcdc9aaa02150205dd2b7f5 (diff) | |
download | libcdio-origin.tar.gz |
-rw-r--r-- | include/cdio/iso9660.h | 18 |
diff --git a/include/cdio/iso9660.h b/include/cdio/iso9660.h index bbcf265c..f5eb09e2 100644 --- a/include/cdio/iso9660.h +++ b/include/cdio/iso9660.h @@ -27,7 +27,7 @@ * filesystem library; applications include this. * * See also the ISO-9660 specification. The freely available European - * equivalant standard is called ECMA-119. + * equivalent standard is called ECMA-119. */ @@ -78,7 +78,7 @@ typedef char dchar_t; /*! See section 7.4.1 */ program; things are done this way so that in a debugger one can to refer to the enumeration value names such as in a debugger expression and get something. With the more common a \#define - mechanism, the name/value assocation is lost at run time. + mechanism, the name/value association is lost at run time. */ extern enum iso_enum1_s { ISO_PVD_SECTOR = 16, /**< Sector of Primary Volume Descriptor. */ @@ -395,7 +395,7 @@ typedef struct iso9660_pvd_s iso9660_pvd_t; /*! \brief ISO-9660 Supplementary Volume Descriptor. - This is used for Joliet Extentions and is almost the same as the + This is used for Joliet Extensions and is almost the same as the the primary descriptor but two unused fields, "unused1" and "unused3 become "flags and "escape_sequences" respectively. */ @@ -550,7 +550,7 @@ struct iso9660_stat_s { /* big endian!! */ /* Multi-extent aware size, in bytes. It is guaranteed that the bytes are stored as gapless string in a - continguous sequence of blocks. I.e. they can be read sequentially + contiguous sequence of blocks. I.e. they can be read sequentially starting at iso9660_stat_s.lsn. Data files which do not fulfil this promise cause a warning message and are not represented by this type of struct. @@ -638,7 +638,7 @@ typedef struct _iso9660_s iso9660_t; contained in a file format that libiso9660 doesn't know natively (or knows imperfectly.) - Some tolerence allowed for positioning the ISO 9660 image. We scan + Some tolerance allowed for positioning the ISO 9660 image. We scan for STANDARD_ID and use that to set the eventual offset to adjust by (as long as that is <= i_fuzz). @@ -650,7 +650,7 @@ typedef struct _iso9660_s iso9660_t; uint16_t i_fuzz); /*! - Open an ISO 9660 image for reading with some tolerence for positioning + Open an ISO 9660 image for reading with some tolerance for positioning of the ISO9660 image. We scan for ISO_STANDARD_ID and use that to set the eventual offset to adjust by (as long as that is <= i_fuzz). @@ -857,7 +857,7 @@ typedef struct _iso9660_s iso9660_t; /*! Take psz_path and a version number and turn that into a ISO-9660 - pathname. (That's just the pathname followd by ";" and the version + pathname. (That's just the pathname followed by ";" and the version number. For example, mydir/file.ext -> MYDIR/FILE.EXT;1 for version 1. The resulting ISO-9660 pathname is returned. */ @@ -1202,7 +1202,7 @@ lsn_t iso9660_get_dir_extent(const iso9660_dir_t *p_idr); @param p_iso the ISO-9660 file image to get data from - @param u_file_limit the maximimum number of (non-rock-ridge) files + @param u_file_limit the maximum number of (non-rock-ridge) files to consider before giving up and returning "dunno". "dunno" can also be returned if there was some error encountered @@ -1278,7 +1278,7 @@ lsn_t iso9660_get_dir_extent(const iso9660_dir_t *p_idr); void iso9660_set_evd (void *pd); /*! - Return true if ISO 9660 image has extended attrributes (XA). + Return true if ISO 9660 image has extended attributes (XA). */ bool iso9660_ifs_is_xa (const iso9660_t * p_iso); |