@@ -27,21 +27,21 @@ * * @brief A class for reading, creating and modifying INI files. */ @interface OFINIFile: OFObject { - OFMutableArray OF_GENERIC(OFINICategory*) *_categories; + OFMutableArray OF_GENERIC(OFINICategory *) *_categories; } /*! * @brief Creates a new OFINIFile with the contents of the specified file. * * @param path The path to the file whose contents the OFINIFile should contain * * @return A new, autoreleased OFINIFile with the contents of the specified file */ -+ (instancetype)fileWithPath: (OFString*)path; ++ (instancetype)fileWithPath: (OFString *)path; /*! * @brief Creates a new OFINIFile with the contents of the specified file in * the specified encoding. * @@ -48,11 +48,11 @@ * @param path The path to the file whose contents the OFINIFile should contain * @param encoding The encoding of the specified file * * @return A new, autoreleased OFINIFile with the contents of the specified file */ -+ (instancetype)fileWithPath: (OFString*)path ++ (instancetype)fileWithPath: (OFString *)path encoding: (of_string_encoding_t)encoding; /*! * @brief Initializes an already allocated OFINIFile with the contents of the * specified file. @@ -59,11 +59,11 @@ * * @param path The path to the file whose contents the OFINIFile should contain * * @return An initialized OFINIFile with the contents of the specified file */ -- initWithPath: (OFString*)path; +- initWithPath: (OFString *)path; /*! * @brief Initializes an already allocated OFINIFile with the contents of the * specified file in the specified encoding. * @@ -70,11 +70,11 @@ * @param path The path to the file whose contents the OFINIFile should contain * @param encoding The encoding of the specified file * * @return An initialized OFINIFile with the contents of the specified file */ -- initWithPath: (OFString*)path +- initWithPath: (OFString *)path encoding: (of_string_encoding_t)encoding; /*! * @brief Returns an @ref OFINICategory for the category with the specified * name. @@ -82,26 +82,26 @@ * @param name The name of the category for which an @ref OFINICategory should * be returned * * @return An @ref OFINICategory for the category with the specified name */ -- (OFINICategory*)categoryForName: (OFString*)name; +- (OFINICategory *)categoryForName: (OFString *)name; /*! * @brief Writes the contents of the OFINIFile to a file. * * @param path The path of the file to write to */ -- (void)writeToFile: (OFString*)path; +- (void)writeToFile: (OFString *)path; /*! * @brief Writes the contents of the OFINIFile to a file in the specified * encoding. * * @param path The path of the file to write to * @param encoding The encoding to use */ -- (void)writeToFile: (OFString*)path +- (void)writeToFile: (OFString *)path encoding: (of_string_encoding_t)encoding; @end OF_ASSUME_NONNULL_END