ObjFW  Check-in [804809a28e]

Overview
Comment:OFTarArchive.h: Fix a typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 804809a28e11f70eddd73e12a915810895c9e66a582720284126073d84130306
User & Date: js on 2016-05-22 21:14:48
Other Links: manifest | tags
Context
2016-05-22
21:30
OFZIP: Add an option to manually specify the type check-in: ea478372d8 user: js tags: trunk
21:14
OFTarArchive.h: Fix a typo check-in: 804809a28e user: js tags: trunk
21:02
OFZIP: Add support for tar and tar.gz files check-in: 8dee4cac41 user: js tags: trunk
Changes

Modified src/OFTarArchive.h from [e6cdb8e0ee] to [a421bc5d7a].

39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

/*!
 * @brief Creates a new OFTarArchive object with the specified stream.
 *
 * @param stream A stream from which the tar archive will be read
 * @return A new, autoreleased OFTarArchive
 */
+ (instancetype)archiveWithStream: (OFString*)stream;

#ifdef OF_HAVE_FILES
/*!
 * @brief Creates a new OFTarArchive object with the specified file.
 *
 * @param path The path to the tar archive
 * @return A new, autoreleased OFTarArchive







|







39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

/*!
 * @brief Creates a new OFTarArchive object with the specified stream.
 *
 * @param stream A stream from which the tar archive will be read
 * @return A new, autoreleased OFTarArchive
 */
+ (instancetype)archiveWithStream: (OFStream*)stream;

#ifdef OF_HAVE_FILES
/*!
 * @brief Creates a new OFTarArchive object with the specified file.
 *
 * @param path The path to the tar archive
 * @return A new, autoreleased OFTarArchive