@@ -58,11 +58,11 @@ * * @param program The program to execute. If it does not start with a slash, the * search path specified in PATH is used. * @return A new, autoreleased OFProcess. */ -+ (instancetype)processWithProgram: (OFString*)program; ++ (instancetype)processWithProgram: (OFString *)program; /*! * @brief Creates a new OFProcess with the specified program and arguments and * invokes the program. * @@ -70,12 +70,12 @@ * search path specified in PATH is used. * @param arguments The arguments to pass to the program, or `nil` * @return A new, autoreleased OFProcess. */ + (instancetype) - processWithProgram: (OFString*)program - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments; + processWithProgram: (OFString *)program + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments; /*! * @brief Creates a new OFProcess with the specified program, program name and * arguments and invokes the program. * @@ -85,13 +85,13 @@ * Usually, this is equal to program. * @param arguments The arguments to pass to the program, or `nil` * @return A new, autoreleased OFProcess. */ + (instancetype) - processWithProgram: (OFString*)program - programName: (OFString*)programName - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments; + processWithProgram: (OFString *)program + programName: (OFString *)programName + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments; /*! * @brief Creates a new OFProcess with the specified program, program name, * arguments and environment and invokes the program. * @@ -106,25 +106,25 @@ * existing environment, you need to get the existing * environment first, copy it, modify it and then pass it. * @return A new, autoreleased OFProcess. */ + (instancetype) - processWithProgram: (OFString*)program - programName: (OFString*)programName - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments + processWithProgram: (OFString *)program + programName: (OFString *)programName + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments environment: (nullable OFDictionary - OF_GENERIC(OFString*, OFString*)*)environment; + OF_GENERIC(OFString *, OFString *) *)environment; /*! * @brief Initializes an already allocated OFProcess with the specified program * and invokes the program. * * @param program The program to execute. If it does not start with a slash, the * search path specified in PATH is used. * @return An initialized OFProcess. */ -- initWithProgram: (OFString*)program; +- initWithProgram: (OFString *)program; /*! * @brief Initializes an already allocated OFProcess with the specified program * and arguments and invokes the program. * @@ -131,12 +131,12 @@ * @param program The program to execute. If it does not start with a slash, the * search path specified in PATH is used. * @param arguments The arguments to pass to the program, or `nil` * @return An initialized OFProcess. */ -- initWithProgram: (OFString*)program - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments; +- initWithProgram: (OFString *)program + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments; /*! * @brief Initializes an already allocated OFProcess with the specified program, * program name and arguments and invokes the program. * @@ -145,13 +145,13 @@ * @param programName The program name for the program to invoke (argv[0]). * Usually, this is equal to program. * @param arguments The arguments to pass to the program, or `nil` * @return An initialized OFProcess. */ -- initWithProgram: (OFString*)program - programName: (OFString*)programName - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments; +- initWithProgram: (OFString *)program + programName: (OFString *)programName + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments; /*! * @brief Initializes an already allocated OFProcess with the specified program, * program name, arguments and environment and invokes the program. * @@ -165,15 +165,15 @@ * override the environment. If you want to add to the * existing environment, you need to get the existing * environment first, copy it, modify it and then pass it. * @return An initialized OFProcess. */ -- initWithProgram: (OFString*)program - programName: (OFString*)programName - arguments: (nullable OFArray OF_GENERIC(OFString*)*)arguments +- initWithProgram: (OFString *)program + programName: (OFString *)programName + arguments: (nullable OFArray OF_GENERIC(OFString *) *)arguments environment: (nullable OFDictionary - OF_GENERIC(OFString*, OFString*)*)environment; + OF_GENERIC(OFString *, OFString *) *)environment; /*! * @brief Closes the write direction of the process. * * This method needs to be called for some programs before data can be read,