@@ -52,12 +52,12 @@ * been specified. */ bool *_Nullable isSpecifiedPtr; /*! - * An optional pointer to an @ref OFString* that is set to the argument - * specified for the option or `nil` for no argument. + * An optional pointer to an @ref OFString * that is set to the + * argument specified for the option or `nil` for no argument. */ OFString *__autoreleasing _Nullable *_Nullable argumentPtr; } of_options_parser_option_t; /*! @@ -67,11 +67,11 @@ */ @interface OFOptionsParser: OFObject { of_options_parser_option_t *_options; OFMapTable *_longOptions; - OFArray OF_GENERIC(OFString*) *_arguments; + OFArray OF_GENERIC(OFString *) *_arguments; size_t _index, _subIndex; of_unichar_t _lastOption; OFString *_lastLongOption, *_argument; bool _done; } @@ -116,11 +116,11 @@ * accepted options, terminated with an option whose short * option is `\0` and long option is `nil`. * * @return A new, autoreleased OFOptionsParser */ -+ (instancetype)parserWithOptions: (const of_options_parser_option_t*)options; ++ (instancetype)parserWithOptions: (const of_options_parser_option_t *)options; /*! * @brief Initializes an already allocated OFOptionsParser so that it accepts * the specified options. * @@ -128,11 +128,11 @@ * accepted options, terminated with an option whose short * option is `\0` and long option is `nil`. * * @return An initialized OFOptionsParser */ -- initWithOptions: (const of_options_parser_option_t*)options; +- initWithOptions: (const of_options_parser_option_t *)options; /*! * @brief Returns the next option. * * If the option is only available as a long option, `-` is returned. @@ -155,9 +155,9 @@ /*! * @brief Returns the arguments following the last option. * * @return The arguments following the last option */ -- (OFArray OF_GENERIC(OFString*)*)remainingArguments; +- (OFArray OF_GENERIC(OFString *) *)remainingArguments; @end OF_ASSUME_NONNULL_END