@@ -88,11 +88,11 @@ * of the specified file. * * @param path The path of the file * @return A new autoreleased OFDataArray */ -+ (instancetype)dataArrayWithContentsOfFile: (OFString*)path; ++ (instancetype)dataArrayWithContentsOfFile: (OFString *)path; #endif #if defined(OF_HAVE_FILES) || defined(OF_HAVE_SOCKETS) /*! * @brief Creates a new OFDataArray with an item size of 1, containing the data @@ -99,30 +99,30 @@ * of the specified URL. * * @param URL The URL to the contents for the OFDataArray * @return A new autoreleased OFDataArray */ -+ (instancetype)dataArrayWithContentsOfURL: (OFURL*)URL; ++ (instancetype)dataArrayWithContentsOfURL: (OFURL *)URL; #endif /*! * @brief Creates a new OFDataArray with an item size of 1, containing the data * of the string representation. * * @param string The string representation of the data * @return A new autoreleased OFDataArray */ -+ (instancetype)dataArrayWithStringRepresentation: (OFString*)string; ++ (instancetype)dataArrayWithStringRepresentation: (OFString *)string; /*! * @brief Creates a new OFDataArray with an item size of 1, containing the data * of the Base64-encoded string. * * @param string The string with the Base64-encoded data * @return A new autoreleased OFDataArray */ -+ (instancetype)dataArrayWithBase64EncodedString: (OFString*)string; ++ (instancetype)dataArrayWithBase64EncodedString: (OFString *)string; /*! * @brief Initializes an already allocated OFDataArray whose items all have the * same size. * @@ -158,11 +158,11 @@ * containing the data of the specified file. * * @param path The path of the file * @return An initialized OFDataArray */ -- initWithContentsOfFile: (OFString*)path; +- initWithContentsOfFile: (OFString *)path; #endif #if defined(OF_HAVE_FILES) || defined(OF_HAVE_SOCKETS) /*! * @brief Initializes an already allocated OFDataArray with an item size of 1, @@ -169,30 +169,30 @@ * containing the data of the specified URL. * * @param URL The URL to the contents for the OFDataArray * @return A new autoreleased OFDataArray */ -- initWithContentsOfURL: (OFURL*)URL; +- initWithContentsOfURL: (OFURL *)URL; #endif /*! * @brief Initializes an already allocated OFDataArray with an item size of 1, * containing the data of the string representation. * * @param string The string representation of the data * @return A new autoreleased OFDataArray */ -- initWithStringRepresentation: (OFString*)string; +- initWithStringRepresentation: (OFString *)string; /*! * @brief Initializes an already allocated OFDataArray with an item size of 1, * containing the data of the Base64-encoded string. * * @param string The string with the Base64-encoded data * @return An initialized OFDataArray */ -- initWithBase64EncodedString: (OFString*)string; +- initWithBase64EncodedString: (OFString *)string; /*! * @brief Returns the number of items in the OFDataArray. * * @return The number of items in the OFDataArray @@ -207,67 +207,67 @@ * Modifying the returned array directly is allowed and will change the contents * of the data array. * * @return All elements of the OFDataArray as a C array */ -- (void*)items OF_RETURNS_INNER_POINTER; +- (void *)items OF_RETURNS_INNER_POINTER; /*! * @brief Returns a specific item of the OFDataArray. * * @param index The number of the item to return * @return The specified item of the OFDataArray */ -- (void*)itemAtIndex: (size_t)index OF_RETURNS_INNER_POINTER; +- (void *)itemAtIndex: (size_t)index OF_RETURNS_INNER_POINTER; /*! * @brief Returns the first item of the OFDataArray. * * @return The first item of the OFDataArray or NULL */ -- (nullable void*)firstItem OF_RETURNS_INNER_POINTER; +- (nullable void *)firstItem OF_RETURNS_INNER_POINTER; /*! * @brief Returns the last item of the OFDataArray. * * @return The last item of the OFDataArray or NULL */ -- (nullable void*)lastItem OF_RETURNS_INNER_POINTER; +- (nullable void *)lastItem OF_RETURNS_INNER_POINTER; /*! * @brief Adds an item to the OFDataArray. * * @param item A pointer to an arbitrary item */ -- (void)addItem: (const void*)item; +- (void)addItem: (const void *)item; /*! * @brief Adds an item to the OFDataArray at the specified index. * * @param item A pointer to an arbitrary item * @param index The index where the item should be added */ -- (void)insertItem: (const void*)item +- (void)insertItem: (const void *)item atIndex: (size_t)index; /*! * @brief Adds items from a C array to the OFDataArray. * * @param items A C array containing the items to add * @param count The number of items to add */ -- (void)addItems: (const void*)items +- (void)addItems: (const void *)items count: (size_t)count; /*! * @brief Adds items from a C array to the OFDataArray at the specified index. * * @param items A C array containing the items to add * @param index The index where the items should be added * @param count The number of items to add */ -- (void)insertItems: (const void*)items +- (void)insertItems: (const void *)items atIndex: (size_t)index count: (size_t)count; /*! * @brief Removes the item at the specified index. @@ -299,28 +299,28 @@ * The string representation is a hex dump of the data inside the data array, * grouped by itemSize bytes. * * @return The string representation of the data array. */ -- (OFString*)stringRepresentation; +- (OFString *)stringRepresentation; /*! * @brief Returns a string containing the data in Base64 encoding. * * @return A string containing the data in Base64 encoding */ -- (OFString*)stringByBase64Encoding; +- (OFString *)stringByBase64Encoding; #ifdef OF_HAVE_FILES /*! * @brief Writes the OFDataArray into the specified file. * * @param path The path of the file to write to */ -- (void)writeToFile: (OFString*)path; +- (void)writeToFile: (OFString *)path; #endif @end OF_ASSUME_NONNULL_END #import "OFDataArray+CryptoHashing.h" #import "OFDataArray+MessagePackValue.h"