@@ -189,11 +189,11 @@ * * @param argc A pointer where a pointer to argc should be stored * @param argv A pointer where a pointer to argv should be stored */ - (void)getArgumentCount: (int *_Nonnull *_Nonnull)argc - andArgumentValues: (char *_Nonnull *_Nonnull *_Nonnull[])argv; + andArgumentValues: (char *_Nonnull *_Nonnull *_Nonnull[_Nonnull])argv; /*! * @brief Returns the delegate of the application. * * @return The delegate of the application @@ -221,12 +221,12 @@ @end #ifdef __cplusplus extern "C" { #endif -extern int of_application_main(int *_Nonnull, char *_Nonnull *_Nonnull[], - Class); +extern int of_application_main(int *_Nonnull, + char *_Nonnull *_Nonnull[_Nonnull], Class); #ifdef __cplusplus } #endif OF_ASSUME_NONNULL_END