XNU Image Fuzzer 1.8.2
Documentation for XNU Image Fuzzer
Loading...
Searching...
No Matches
AppDelegate.h
Go to the documentation of this file.
1/*!
2 * @file AppDelegate.h
3 * @brief XNU Image Fuzzer
4 * @author David Hoyt
5 * @date 01 JUN 2024
6 * @version 1.8.2
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 *
22 */
23
24#pragma mark - Headers
25
26/*!
27@brief Core and external libraries necessary for the fuzzer functionality.
28
29@details This section includes the necessary headers for the Foundation framework, UIKit, Core Graphics,
30standard input/output, standard library, memory management, mathematical functions,
31Boolean type, floating-point limits, and string functions. These libraries support
32image processing, UI interaction, and basic C operations essential for the application.
33*/
34#import <UIKit/UIKit.h>
35
36@interface AppDelegate : UIResponder <UIApplicationDelegate>
37@property (strong, nonatomic) UIWindow *window;
38
40
41@end
42
Core and external libraries necessary for the fuzzer functionality.
Definition AppDelegate.h:36
UIWindow * window
Definition AppDelegate.h:37
void transitionToFuzzedImagesViewController()
Definition AppDelegate.m:66