@@ -41,40 +41,40 @@ * @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; ++ (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 */ -+ (instancetype)archiveWithPath: (OFString*)path; ++ (instancetype)archiveWithPath: (OFString *)path; #endif /*! * @brief Initializes an already allocated OFTarArchive object with the * specified stream. * * @param stream A stream from which the tar archive will be read * @return An initialized OFTarArchive */ -- initWithStream: (OFStream*)stream; +- initWithStream: (OFStream *)stream; #ifdef OF_HAVE_FILES /*! * @brief Initializes an already allocated OFTarArchive object with the * specified file. * * @param path The path to the tar archive * @return An initialized OFTarArchive */ -- initWithPath: (OFString*)path; +- initWithPath: (OFString *)path; #endif /*! * @brief Returns the next entry from the tar archive or `nil` if all entries * have been read. @@ -84,9 +84,9 @@ * @ref OFReadFailedException! * * @return The next entry from the tar archive or `nil` if all entries have * been read */ -- (OFTarArchiveEntry*)nextEntry; +- (OFTarArchiveEntry *)nextEntry; @end OF_ASSUME_NONNULL_END