├── .DS_Store ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── assets └── fonts │ └── Roboto-Regular.ttf ├── fonts ├── .DS_Store ├── open-sans │ ├── Apache License.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-Semibold.ttf │ └── OpenSans-SemiboldItalic.ttf ├── raleway │ ├── Raleway-Black.ttf │ ├── Raleway-BlackItalic.ttf │ ├── Raleway-Bold.ttf │ ├── Raleway-BoldItalic.ttf │ ├── Raleway-ExtraBold.ttf │ ├── Raleway-ExtraBoldItalic.ttf │ ├── Raleway-ExtraLight.ttf │ ├── Raleway-ExtraLightItalic.ttf │ ├── Raleway-Italic.ttf │ ├── Raleway-Light.ttf │ ├── Raleway-LightItalic.ttf │ ├── Raleway-Medium.ttf │ ├── Raleway-MediumItalic.ttf │ ├── Raleway-Regular.ttf │ ├── Raleway-SemiBold.ttf │ ├── Raleway-SemiBoldItalic.ttf │ ├── Raleway-Thin.ttf │ ├── Raleway-ThinItalic.ttf │ └── SIL Open Font License.txt └── roboto │ ├── Apache License.txt │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ ├── RobotoCondensed-Regular.ttf │ └── Roboto_test.ttf ├── includes ├── builtin_components │ ├── builtin_commons.h │ ├── button │ │ └── button.h │ ├── checkbox │ │ └── checkbox.h │ ├── div │ │ └── div.h │ ├── radio │ │ └── radio.h │ └── text │ │ └── text.h ├── component_user_events.h ├── components.h ├── default_theme.h ├── events.h ├── font.h ├── input_tools.h ├── libui.h ├── style.h ├── style_sheet.h ├── typedefs.h └── windows.h ├── libraries ├── FT_SimpleSDL │ ├── Makefile │ ├── README.md │ ├── inc │ │ ├── drawing.h │ │ └── ft_simplesdl.h │ ├── libft │ │ ├── Makefile │ │ ├── author │ │ ├── ft_atoi.c │ │ ├── ft_bzero.c │ │ ├── ft_charreplace.c │ │ ├── ft_charsetreplace.c │ │ ├── ft_count_if.c │ │ ├── ft_countchar.c │ │ ├── ft_endc.c │ │ ├── ft_fabs.c │ │ ├── ft_getnextvar.c │ │ ├── ft_intsort.c │ │ ├── ft_isalnum.c │ │ ├── ft_isalpha.c │ │ ├── ft_isascii.c │ │ ├── ft_ischarin.c │ │ ├── ft_isdigit.c │ │ ├── ft_isprint.c │ │ ├── ft_itoa.c │ │ ├── ft_lstadd.c │ │ ├── ft_lstdel.c │ │ ├── ft_lstdelone.c │ │ ├── ft_lstiter.c │ │ ├── ft_lstmap.c │ │ ├── ft_lstnew.c │ │ ├── ft_lstpush.c │ │ ├── ft_memalloc.c │ │ ├── ft_memccpy.c │ │ ├── ft_memchr.c │ │ ├── ft_memcmp.c │ │ ├── ft_memcpy.c │ │ ├── ft_memdel.c │ │ ├── ft_memmove.c │ │ ├── ft_memset.c │ │ ├── ft_pow.c │ │ ├── ft_printf │ │ │ ├── Makefile │ │ │ ├── author │ │ │ ├── ft_printf.c │ │ │ ├── ft_printf.h │ │ │ ├── ft_printf_color.c │ │ │ ├── ft_printf_hex.c │ │ │ ├── ft_printf_itoal.c │ │ │ ├── ft_printf_itob.c │ │ │ ├── ft_printf_justify.c │ │ │ ├── ft_printf_number.c │ │ │ ├── ft_printf_parse.c │ │ │ ├── ft_printf_printdata.c │ │ │ ├── ft_printf_putlongf.c │ │ │ ├── ft_printf_putwchar.c │ │ │ └── libftprintf.a │ │ ├── ft_putchar.c │ │ ├── ft_putchar_fd.c │ │ ├── ft_putendl.c │ │ ├── ft_putendl_fd.c │ │ ├── ft_putnbr.c │ │ ├── ft_putnbr_base.c │ │ ├── ft_putnbr_fd.c │ │ ├── ft_putstr.c │ │ ├── ft_putstr_fd.c │ │ ├── ft_putstrf.c │ │ ├── ft_putwchar.c │ │ ├── ft_removechars.c │ │ ├── ft_searchreplace.c │ │ ├── ft_sqrt.c │ │ ├── ft_startc.c │ │ ├── ft_strcat.c │ │ ├── ft_strchr.c │ │ ├── ft_strcjoin.c │ │ ├── ft_strclr.c │ │ ├── ft_strcmp.c │ │ ├── ft_strcpy.c │ │ ├── ft_strdel.c │ │ ├── ft_strdup.c │ │ ├── ft_strequ.c │ │ ├── ft_striter.c │ │ ├── ft_striteri.c │ │ ├── ft_strjoin.c │ │ ├── ft_strlcat.c │ │ ├── ft_strlen.c │ │ ├── ft_strmap.c │ │ ├── ft_strmapi.c │ │ ├── ft_strncat.c │ │ ├── ft_strncmp.c │ │ ├── ft_strncpy.c │ │ ├── ft_strnequ.c │ │ ├── ft_strnew.c │ │ ├── ft_strnstr.c │ │ ├── ft_strrchr.c │ │ ├── ft_strreplace.c │ │ ├── ft_strsort.c │ │ ├── ft_strsplit.c │ │ ├── ft_strsplitcharset.c │ │ ├── ft_strsplitescape.c │ │ ├── ft_strstr.c │ │ ├── ft_strsub.c │ │ ├── ft_strtrim.c │ │ ├── ft_strunescape.c │ │ ├── ft_strzero.c │ │ ├── ft_tabfree.c │ │ ├── ft_tabsize.c │ │ ├── ft_tolower.c │ │ ├── ft_toupper.c │ │ ├── ft_unescape_args.c │ │ ├── ft_wcharlen.c │ │ ├── ft_wstrlen.c │ │ ├── ft_wstrlen_min.c │ │ ├── get_next_line.c │ │ ├── libft.a │ │ └── libft.h │ ├── sdl2_frameworks │ │ ├── SDL2.framework │ │ │ ├── Headers │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SDL2 │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_assert.h │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_bits.h │ │ │ │ │ ├── SDL_blendmode.h │ │ │ │ │ ├── SDL_clipboard.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ │ ├── SDL_copying.h │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ ├── SDL_filesystem.h │ │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ │ ├── SDL_gesture.h │ │ │ │ │ ├── SDL_haptic.h │ │ │ │ │ ├── SDL_hints.h │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ ├── SDL_keycode.h │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ ├── SDL_log.h │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ ├── SDL_messagebox.h │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ ├── SDL_touch.h │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ ├── SDL_vulkan.h │ │ │ │ │ ├── begin_code.h │ │ │ │ │ └── close_code.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── SDL2 │ │ │ │ ├── SDL2.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── SDL2 │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources.xml │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── SDL2 │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources.xml │ │ ├── SDL2_image.framework │ │ │ ├── Frameworks │ │ │ │ └── webp.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ └── webp │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ └── webp │ │ │ │ │ └── webp │ │ │ ├── Headers │ │ │ │ └── SDL_image.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SDL2_image │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Frameworks │ │ │ │ │ └── webp.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ │ ├── webp │ │ │ │ │ │ │ └── webp.dSYM │ │ │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ └── webp │ │ │ │ ├── Headers │ │ │ │ │ └── SDL_image.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── SDL2_image │ │ │ │ ├── SDL2_image.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── SDL2_image │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources.xml │ │ │ │ └── Current │ │ │ │ ├── Frameworks │ │ │ │ └── webp.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ └── webp │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources.xml │ │ │ │ │ │ └── webp │ │ │ │ │ └── webp │ │ │ │ ├── Headers │ │ │ │ └── SDL_image.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── SDL2_image │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources.xml │ │ ├── SDL2_mixer.framework │ │ │ ├── Frameworks │ │ │ │ ├── FLAC.framework │ │ │ │ │ ├── FLAC │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ ├── Ogg.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── Ogg │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ ├── Opus.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ ├── Opus │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ ├── OpusFile.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ ├── OpusFile │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ ├── Vorbis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ └── Vorbis │ │ │ │ ├── modplug.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ └── modplug │ │ │ │ └── mpg123.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── fmt123.h │ │ │ │ │ └── mpg123.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ └── mpg123 │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ └── mpg123 │ │ │ │ │ └── mpg123 │ │ │ ├── Headers │ │ │ │ └── SDL_mixer.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SDL2_mixer │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Frameworks │ │ │ │ │ ├── FLAC.framework │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ ├── Ogg.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Opus.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ ├── OpusFile.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ ├── Vorbis.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ └── Vorbis │ │ │ │ │ ├── modplug.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ └── modplug │ │ │ │ │ └── mpg123.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ │ └── mpg123 │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ │ └── mpg123 │ │ │ │ │ │ └── mpg123 │ │ │ │ ├── Headers │ │ │ │ │ └── SDL_mixer.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── SDL2_mixer │ │ │ │ └── Current │ │ │ │ ├── Frameworks │ │ │ │ ├── FLAC.framework │ │ │ │ │ ├── FLAC │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ ├── Ogg.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── Ogg │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ ├── Opus.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ ├── Opus │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── opus.h │ │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ │ └── opus_types.h │ │ │ │ │ │ ├── Opus │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ ├── OpusFile.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ ├── OpusFile │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── opusfile.h │ │ │ │ │ │ ├── OpusFile │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ ├── Vorbis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ └── Vorbis │ │ │ │ ├── modplug.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── modplug.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ │ │ └── modplug │ │ │ │ │ └── modplug │ │ │ │ └── mpg123.framework │ │ │ │ │ ├── Headers │ │ │ │ │ ├── fmt123.h │ │ │ │ │ └── mpg123.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ ├── Versions │ │ │ │ │ ├── A │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ └── mpg123 │ │ │ │ │ └── Current │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── fmt123.h │ │ │ │ │ │ └── mpg123.h │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ │ │ └── mpg123 │ │ │ │ │ └── mpg123 │ │ │ │ ├── Headers │ │ │ │ └── SDL_mixer.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── SDL2_mixer │ │ └── SDL2_ttf.framework │ │ │ ├── Frameworks │ │ │ └── FreeType.framework │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftparams.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ └── tttags.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftparams.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ └── tttags.h │ │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Current │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftparams.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ └── tttags.h │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ ├── Headers │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── SDL2_ttf │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Frameworks │ │ │ │ └── FreeType.framework │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftparams.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ └── tttags.h │ │ │ │ │ └── ft2build.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── FreeType.dSYM │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ │ └── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ ├── ftparams.h │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ └── tttags.h │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ │ └── Current │ │ │ │ │ ├── FreeType │ │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftparams.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ └── tttags.h │ │ │ │ │ └── ft2build.h │ │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ ├── Headers │ │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SDL2_ttf │ │ │ └── SDL2_ttf.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── SDL2_ttf │ │ │ └── Current │ │ │ ├── Frameworks │ │ │ └── FreeType.framework │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftparams.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ └── tttags.h │ │ │ │ └── ft2build.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftparams.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ └── tttags.h │ │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.freetype.txt │ │ │ │ └── Current │ │ │ │ ├── FreeType │ │ │ │ ├── Headers │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftparams.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ └── tttags.h │ │ │ │ └── ft2build.h │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings.txt │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.freetype.txt │ │ │ ├── Headers │ │ │ └── SDL_ttf.h │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ └── SDL2_ttf │ ├── sdl2_inc │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mixer.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_ttf.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── src │ │ ├── draw.c │ │ ├── draw2.c │ │ ├── ft_memalloc.c │ │ ├── ft_strdup.c │ │ ├── image_load.c │ │ ├── image_set.c │ │ ├── images.c │ │ ├── init.c │ │ ├── init2.c │ │ ├── linked_lists.c │ │ ├── loop.c │ │ ├── loop2.c │ │ ├── olddraw.c │ │ └── text.c │ └── testing │ │ ├── a.out │ │ ├── arial.ttf │ │ └── main.c ├── libCplus │ ├── .github │ │ └── workflows │ │ │ └── c-cpp.yml │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── author │ ├── includes │ │ ├── css_parser.h │ │ ├── cvector.h │ │ ├── ft_match.h │ │ ├── ft_scanstr.h │ │ ├── hashtable.h │ │ ├── libft.h │ │ ├── ttslist.h │ │ └── xml_parser.h │ ├── make_config.mk │ └── sources │ │ ├── README.md │ │ ├── base │ │ ├── README.md │ │ ├── ft_atoi.c │ │ ├── ft_bzero.c │ │ ├── ft_charreplace.c │ │ ├── ft_charsetreplace.c │ │ ├── ft_count_if.c │ │ ├── ft_countchar.c │ │ ├── ft_endc.c │ │ ├── ft_fabs.c │ │ ├── ft_getnextvar.c │ │ ├── ft_howmany.c │ │ ├── ft_int_min.c │ │ ├── ft_intsort.c │ │ ├── ft_isalnum.c │ │ ├── ft_isalpha.c │ │ ├── ft_isascii.c │ │ ├── ft_ischarin.c │ │ ├── ft_isdigit.c │ │ ├── ft_isprint.c │ │ ├── ft_itoa.c │ │ ├── ft_lstadd.c │ │ ├── ft_lstclear.c │ │ ├── ft_lstdel.c │ │ ├── ft_lstdelone.c │ │ ├── ft_lstiter.c │ │ ├── ft_lstmap.c │ │ ├── ft_lstnew.c │ │ ├── ft_lstpush.c │ │ ├── ft_match.c │ │ ├── ft_match_parts.c │ │ ├── ft_memalloc.c │ │ ├── ft_memccpy.c │ │ ├── ft_memchr.c │ │ ├── ft_memcmp.c │ │ ├── ft_memcpy.c │ │ ├── ft_memdel.c │ │ ├── ft_memmove.c │ │ ├── ft_memset.c │ │ ├── ft_pow.c │ │ ├── ft_power_positif.c │ │ ├── ft_putchar.c │ │ ├── ft_putchar_fd.c │ │ ├── ft_putendl.c │ │ ├── ft_putendl_fd.c │ │ ├── ft_putnbr.c │ │ ├── ft_putnbr_base.c │ │ ├── ft_putnbr_fd.c │ │ ├── ft_putstr.c │ │ ├── ft_putstr_fd.c │ │ ├── ft_putstrf.c │ │ ├── ft_putwchar.c │ │ ├── ft_removechars.c │ │ ├── ft_replace.c │ │ ├── ft_scanstr.c │ │ ├── ft_scanstr_parts.c │ │ ├── ft_searchreplace.c │ │ ├── ft_sqrt.c │ │ ├── ft_startc.c │ │ ├── ft_strcat.c │ │ ├── ft_strchr.c │ │ ├── ft_strcjoin.c │ │ ├── ft_strclr.c │ │ ├── ft_strcmp.c │ │ ├── ft_strcpy.c │ │ ├── ft_strdel.c │ │ ├── ft_strdup.c │ │ ├── ft_strequ.c │ │ ├── ft_striter.c │ │ ├── ft_striteri.c │ │ ├── ft_strjoin.c │ │ ├── ft_strlcat.c │ │ ├── ft_strlen.c │ │ ├── ft_strmap.c │ │ ├── ft_strmapi.c │ │ ├── ft_strncat.c │ │ ├── ft_strncmp.c │ │ ├── ft_strncpy.c │ │ ├── ft_strnequ.c │ │ ├── ft_strnew.c │ │ ├── ft_strnstr.c │ │ ├── ft_strrchr.c │ │ ├── ft_strreplace.c │ │ ├── ft_strsort.c │ │ ├── ft_strsplit.c │ │ ├── ft_strsplitcharset.c │ │ ├── ft_strsplitescape.c │ │ ├── ft_strstr.c │ │ ├── ft_strsub.c │ │ ├── ft_strtouper.c │ │ ├── ft_strtrim.c │ │ ├── ft_strunescape.c │ │ ├── ft_strzero.c │ │ ├── ft_tabfree.c │ │ ├── ft_tabsize.c │ │ ├── ft_tolower.c │ │ ├── ft_toupper.c │ │ ├── ft_unescape_args.c │ │ ├── ft_wcharlen.c │ │ ├── ft_wstrlen.c │ │ ├── ft_wstrlen_min.c │ │ └── make_module.mk │ │ ├── css_parser │ │ ├── README.md │ │ ├── css_parser.c │ │ ├── make_module.mk │ │ ├── token_identifiers.c │ │ └── tokenizer.c │ │ ├── cvector │ │ ├── README.md │ │ ├── cvector.c │ │ └── make_module.mk │ │ ├── get_next_line │ │ ├── get_next_line.c │ │ └── make_module.mk │ │ ├── hashtable │ │ └── hashtable.c │ │ ├── ttslist │ │ ├── README.md │ │ ├── make_module.mk │ │ ├── ttslist_constructors.c │ │ ├── ttslist_delete.c │ │ ├── ttslist_iterator.c │ │ ├── ttslist_operations.c │ │ ├── ttslist_purge.c │ │ └── ttslist_tools.c │ │ └── xml_parser │ │ ├── README.md │ │ ├── main.c │ │ ├── make_module.mk │ │ ├── manipulations.c │ │ ├── parser_types.c │ │ └── tools.c └── libraries_linking.mk ├── make_config.mk ├── sources ├── builtin_components │ ├── builtin_draw_border.c │ ├── builtin_draw_text.c │ ├── builtin_draw_tools.c │ ├── button │ │ ├── constructor.c │ │ ├── draw.c │ │ ├── events_keyboard.c │ │ ├── events_mouse.c │ │ ├── events_wheel.c │ │ └── style.c │ ├── checkbox │ │ ├── constructor.c │ │ ├── draw.c │ │ ├── events_keyboard.c │ │ ├── events_mouse.c │ │ ├── events_wheel.c │ │ └── style.c │ ├── div │ │ ├── constructor.c │ │ ├── draw.c │ │ ├── events_keyboard.c │ │ ├── events_mouse.c │ │ ├── events_wheel.c │ │ └── style.c │ ├── radio │ │ ├── constructor.c │ │ ├── draw.c │ │ ├── events_keyboard.c │ │ ├── events_mouse.c │ │ ├── events_wheel.c │ │ └── style.c │ └── text │ │ ├── constructor.c │ │ ├── draw.c │ │ ├── events_keyboard.c │ │ ├── events_mouse.c │ │ ├── events_wheel.c │ │ └── style.c ├── components.c ├── components_draw.c ├── components_internal_events.c ├── components_internal_events_handlers.c ├── components_user_events.c ├── defaults.c ├── draw.c ├── element_getters.c ├── errors.c ├── fonts_manager │ ├── fonts_manager.c │ └── fonts_search.c ├── internal_events.c ├── libui.c ├── loop.c ├── mouse_tools.c ├── style.c ├── style_sheet │ ├── css_color_parsers.c │ ├── css_color_presets.c │ ├── css_prop_handler_map.c │ ├── css_size_parser.c │ └── css_to_raw_style.c ├── windows.c ├── windows_draw.c ├── windows_internal_events.c └── windows_internal_events_handlers.c └── tests ├── main.c ├── test.c └── test_css.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/.DS_Store -------------------------------------------------------------------------------- /fonts/open-sans/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/Apache License.txt -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /fonts/open-sans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/open-sans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Black.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Italic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Light.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Regular.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/raleway/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/raleway/SIL Open Font License.txt -------------------------------------------------------------------------------- /fonts/roboto/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Apache License.txt -------------------------------------------------------------------------------- /fonts/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/roboto/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto_test.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/fonts/roboto/Roboto_test.ttf -------------------------------------------------------------------------------- /includes/builtin_components/builtin_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/builtin_commons.h -------------------------------------------------------------------------------- /includes/builtin_components/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/button/button.h -------------------------------------------------------------------------------- /includes/builtin_components/checkbox/checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/checkbox/checkbox.h -------------------------------------------------------------------------------- /includes/builtin_components/div/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/div/div.h -------------------------------------------------------------------------------- /includes/builtin_components/radio/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/radio/radio.h -------------------------------------------------------------------------------- /includes/builtin_components/text/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/builtin_components/text/text.h -------------------------------------------------------------------------------- /includes/component_user_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/component_user_events.h -------------------------------------------------------------------------------- /includes/components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/components.h -------------------------------------------------------------------------------- /includes/default_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/default_theme.h -------------------------------------------------------------------------------- /includes/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/events.h -------------------------------------------------------------------------------- /includes/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/font.h -------------------------------------------------------------------------------- /includes/input_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/input_tools.h -------------------------------------------------------------------------------- /includes/libui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/libui.h -------------------------------------------------------------------------------- /includes/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/style.h -------------------------------------------------------------------------------- /includes/style_sheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/style_sheet.h -------------------------------------------------------------------------------- /includes/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/typedefs.h -------------------------------------------------------------------------------- /includes/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/includes/windows.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/Makefile -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/README.md -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/inc/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/inc/drawing.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/inc/ft_simplesdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/inc/ft_simplesdl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/Makefile -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/author: -------------------------------------------------------------------------------- 1 | abiri 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_atoi.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_bzero.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_charreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_charreplace.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_charsetreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_charsetreplace.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_count_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_count_if.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_countchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_countchar.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_endc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_endc.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_fabs.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_getnextvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_getnextvar.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_intsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_intsort.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_isalnum.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_isalpha.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_isascii.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_ischarin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_ischarin.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_isdigit.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_isprint.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_itoa.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstadd.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstdel.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstdelone.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstiter.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstmap.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstnew.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_lstpush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_lstpush.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memalloc.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memccpy.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memchr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memcmp.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memcpy.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memdel.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memmove.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_memset.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_pow.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/Makefile -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/author: -------------------------------------------------------------------------------- 1 | abiri 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_color.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_hex.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_itoal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_itoal.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_itob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_itob.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_justify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_justify.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_number.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_parse.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_printdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_printdata.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_putlongf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_putlongf.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_putwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/ft_printf_putwchar.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_printf/libftprintf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_printf/libftprintf.a -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putchar.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putchar_fd.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putendl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putendl.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putendl_fd.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putnbr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putnbr_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putnbr_base.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putstr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putstr_fd.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putstrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putstrf.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_putwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_putwchar.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_removechars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_removechars.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_searchreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_searchreplace.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_sqrt.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_startc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_startc.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strcat.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strchr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strcjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strcjoin.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strclr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strclr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strcmp.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strcpy.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strdel.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strdup.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strequ.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_striter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_striter.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_striteri.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strjoin.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strlcat.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strlen.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strmap.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strmapi.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strncat.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strncmp.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strncpy.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strnequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strnequ.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strnew.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strnstr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strrchr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strreplace.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strsort.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strsplit.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strsplitcharset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strsplitcharset.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strsplitescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strsplitescape.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strstr.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strsub.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strtrim.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strunescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strunescape.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_strzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_strzero.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_tabfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_tabfree.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_tabsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_tabsize.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_tolower.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_toupper.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_unescape_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_unescape_args.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_wcharlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_wcharlen.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_wstrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_wstrlen.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/ft_wstrlen_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/ft_wstrlen_min.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/get_next_line.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/libft.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/libft.a -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/libft/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/libft/libft.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_assert.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_audio.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_bits.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_config.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_copying.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_endian.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_error.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_events.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_hints.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_log.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_main.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_name.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_power.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_quit.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_rect.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_render.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_revision.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_shape.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_surface.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_system.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_thread.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_timer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_touch.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_types.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_version.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_video.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/begin_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Headers/close_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/SDL2 -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2.dSYM/Contents/Resources/DWARF/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/SDL2.dSYM/Contents/Resources/DWARF/SDL2 -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/_CodeSignature/CodeResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/A/_CodeSignature/CodeResources.xml -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_assert.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_audio.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_bits.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_config.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_copying.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_endian.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_error.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_events.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_hints.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_log.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_main.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_name.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_power.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_quit.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_rect.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_render.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_revision.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_shape.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_surface.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_system.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_thread.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_timer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_touch.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_types.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_version.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_video.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/begin_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Headers/close_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/SDL2 -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/_CodeSignature/CodeResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2.framework/Versions/Current/_CodeSignature/CodeResources.xml -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Frameworks/webp.framework/Versions/A/webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Frameworks/webp.framework/Versions/A/webp -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Frameworks/webp.framework/webp -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Headers/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Headers/SDL_image.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/SDL2_image -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Frameworks/webp.framework/webp -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Headers/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Headers/SDL_image.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/SDL2_image -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/_CodeSignature/CodeResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/A/_CodeSignature/CodeResources.xml -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/Headers/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/Headers/SDL_image.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_image.framework/Versions/Current/SDL2_image -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/FLAC.framework/FLAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/FLAC.framework/FLAC -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/FLAC.framework/Versions/A/FLAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/FLAC.framework/Versions/A/FLAC -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Headers/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Headers/ogg.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Headers/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Headers/os_types.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Ogg -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Versions/A/Ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Ogg.framework/Versions/A/Ogg -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Headers/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Headers/opus.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Opus -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Versions/A/Opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Opus.framework/Versions/A/Opus -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/OpusFile.framework/OpusFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/OpusFile.framework/OpusFile -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Vorbis.framework/Headers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Vorbis.framework/Headers/codec.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Vorbis.framework/Vorbis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/Vorbis.framework/Vorbis -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/modplug.framework/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/modplug.framework/Versions/A/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/modplug.framework/Versions/Current/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/modplug.framework/modplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/modplug.framework/modplug -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/mpg123.framework/mpg123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Frameworks/mpg123.framework/mpg123 -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Headers/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Headers/SDL_mixer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/SDL2_mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/SDL2_mixer -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/FLAC.framework/FLAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/FLAC.framework/FLAC -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Ogg -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/Opus.framework/Opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/Opus.framework/Opus -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/modplug.framework/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/modplug.framework/Versions/A/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Frameworks/modplug.framework/Versions/Current/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Headers/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Headers/SDL_mixer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/SDL2_mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/A/SDL2_mixer -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Frameworks/modplug.framework/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Frameworks/modplug.framework/Versions/A/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Frameworks/modplug.framework/Versions/Current/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Headers/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Headers/SDL_mixer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/SDL2_mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_mixer.framework/Versions/Current/SDL2_mixer -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Frameworks/FreeType.framework/FreeType: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Frameworks/FreeType.framework/FreeType -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Headers/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Headers/SDL_ttf.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/SDL2_ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/SDL2_ttf -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/Headers/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/Headers/SDL_ttf.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/SDL2_ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/SDL2_ttf -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/SDL2_ttf.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/A/SDL2_ttf.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/Headers/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/Headers/SDL_ttf.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/SDL2_ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_frameworks/SDL2_ttf.framework/Versions/Current/SDL2_ttf -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_assert.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_atomic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_audio.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_bits.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_blendmode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_clipboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_config.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_egl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_endian.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_error.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_events.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_filesystem.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_gamecontroller.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_gesture.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_haptic.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_hints.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_image.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_joystick.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_keyboard.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_keycode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_loadso.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_log.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_main.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_messagebox.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_mixer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_mouse.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_mutex.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_name.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengl.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengl_glext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_pixels.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_platform.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_power.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_quit.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_rect.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_render.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_revision.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_rwops.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_scancode.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_shape.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_stdinc.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_surface.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_system.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_syswm.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_assert.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_common.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_compare.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_crc32.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_font.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_harness.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_images.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_log.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_md5.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_memory.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_test_random.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_thread.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_timer.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_touch.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_ttf.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_types.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_version.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_video.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/SDL_vulkan.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/begin_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/sdl2_inc/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/sdl2_inc/close_code.h -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/draw.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/draw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/draw2.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/ft_memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/ft_memalloc.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/ft_strdup.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/image_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/image_load.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/image_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/image_set.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/images.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/init.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/init2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/init2.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/linked_lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/linked_lists.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/loop.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/loop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/loop2.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/olddraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/olddraw.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/src/text.c -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/testing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/testing/a.out -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/testing/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/testing/arial.ttf -------------------------------------------------------------------------------- /libraries/FT_SimpleSDL/testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/FT_SimpleSDL/testing/main.c -------------------------------------------------------------------------------- /libraries/libCplus/.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /libraries/libCplus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/.gitignore -------------------------------------------------------------------------------- /libraries/libCplus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/LICENSE -------------------------------------------------------------------------------- /libraries/libCplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/Makefile -------------------------------------------------------------------------------- /libraries/libCplus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/README.md -------------------------------------------------------------------------------- /libraries/libCplus/author: -------------------------------------------------------------------------------- 1 | abiri 2 | -------------------------------------------------------------------------------- /libraries/libCplus/includes/css_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/css_parser.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/cvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/cvector.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/ft_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/ft_match.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/ft_scanstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/ft_scanstr.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/hashtable.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/libft.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/ttslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/ttslist.h -------------------------------------------------------------------------------- /libraries/libCplus/includes/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/includes/xml_parser.h -------------------------------------------------------------------------------- /libraries/libCplus/make_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/make_config.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/README.md -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/README.md: -------------------------------------------------------------------------------- 1 | #Documentation of the base 2 | -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_atoi.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_bzero.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_charreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_charreplace.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_charsetreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_charsetreplace.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_count_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_count_if.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_countchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_countchar.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_endc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_endc.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_fabs.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_getnextvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_getnextvar.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_howmany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_howmany.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_int_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_int_min.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_intsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_intsort.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_isalnum.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_isalpha.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_isascii.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_ischarin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_ischarin.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_isdigit.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_isprint.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_itoa.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstadd.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstclear.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstdel.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstdelone.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstiter.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstmap.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstnew.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_lstpush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_lstpush.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_match.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_match_parts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_match_parts.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memalloc.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memccpy.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memchr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memcmp.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memcpy.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memdel.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memmove.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_memset.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_pow.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_power_positif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_power_positif.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putchar.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putchar_fd.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putendl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putendl.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putendl_fd.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putnbr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putnbr_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putnbr_base.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putstr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putstr_fd.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putstrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putstrf.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_putwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_putwchar.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_removechars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_removechars.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_replace.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_scanstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_scanstr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_scanstr_parts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_scanstr_parts.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_searchreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_searchreplace.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_sqrt.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_startc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_startc.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strcat.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strchr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strcjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strcjoin.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strclr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strclr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strcmp.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strcpy.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strdel.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strdup.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strequ.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_striter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_striter.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_striteri.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strjoin.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strlcat.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strlen.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strmap.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strmapi.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strncat.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strncmp.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strncpy.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strnequ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strnequ.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strnew.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strnstr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strrchr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strreplace.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strsort.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strsplit.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strsplitcharset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strsplitcharset.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strsplitescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strsplitescape.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strstr.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strsub.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strtouper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strtouper.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strtrim.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strunescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strunescape.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_strzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_strzero.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_tabfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_tabfree.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_tabsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_tabsize.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_tolower.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_toupper.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_unescape_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_unescape_args.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_wcharlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_wcharlen.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_wstrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_wstrlen.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/ft_wstrlen_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/ft_wstrlen_min.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/base/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/base/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/css_parser/README.md: -------------------------------------------------------------------------------- 1 | # CSS_PARSER 2 | Documentation will be uploaded soon 3 | -------------------------------------------------------------------------------- /libraries/libCplus/sources/css_parser/css_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/css_parser/css_parser.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/css_parser/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/css_parser/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/css_parser/token_identifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/css_parser/token_identifiers.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/css_parser/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/css_parser/tokenizer.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/cvector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/cvector/README.md -------------------------------------------------------------------------------- /libraries/libCplus/sources/cvector/cvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/cvector/cvector.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/cvector/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/cvector/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/get_next_line/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/get_next_line/get_next_line.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/get_next_line/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/get_next_line/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/hashtable/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/hashtable/hashtable.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/README.md -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_constructors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_constructors.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_delete.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_iterator.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_operations.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_purge.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/ttslist/ttslist_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/ttslist/ttslist_tools.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/README.md -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/main.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/make_module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/make_module.mk -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/manipulations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/manipulations.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/parser_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/parser_types.c -------------------------------------------------------------------------------- /libraries/libCplus/sources/xml_parser/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libCplus/sources/xml_parser/tools.c -------------------------------------------------------------------------------- /libraries/libraries_linking.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/libraries/libraries_linking.mk -------------------------------------------------------------------------------- /make_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/make_config.mk -------------------------------------------------------------------------------- /sources/builtin_components/builtin_draw_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/builtin_draw_border.c -------------------------------------------------------------------------------- /sources/builtin_components/builtin_draw_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/builtin_draw_text.c -------------------------------------------------------------------------------- /sources/builtin_components/builtin_draw_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/builtin_draw_tools.c -------------------------------------------------------------------------------- /sources/builtin_components/button/constructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/constructor.c -------------------------------------------------------------------------------- /sources/builtin_components/button/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/draw.c -------------------------------------------------------------------------------- /sources/builtin_components/button/events_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/events_keyboard.c -------------------------------------------------------------------------------- /sources/builtin_components/button/events_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/events_mouse.c -------------------------------------------------------------------------------- /sources/builtin_components/button/events_wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/events_wheel.c -------------------------------------------------------------------------------- /sources/builtin_components/button/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/button/style.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/constructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/constructor.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/draw.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/events_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/events_keyboard.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/events_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/events_mouse.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/events_wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/events_wheel.c -------------------------------------------------------------------------------- /sources/builtin_components/checkbox/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/checkbox/style.c -------------------------------------------------------------------------------- /sources/builtin_components/div/constructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/constructor.c -------------------------------------------------------------------------------- /sources/builtin_components/div/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/draw.c -------------------------------------------------------------------------------- /sources/builtin_components/div/events_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/events_keyboard.c -------------------------------------------------------------------------------- /sources/builtin_components/div/events_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/events_mouse.c -------------------------------------------------------------------------------- /sources/builtin_components/div/events_wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/events_wheel.c -------------------------------------------------------------------------------- /sources/builtin_components/div/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/div/style.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/constructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/constructor.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/draw.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/events_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/events_keyboard.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/events_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/events_mouse.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/events_wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/events_wheel.c -------------------------------------------------------------------------------- /sources/builtin_components/radio/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/radio/style.c -------------------------------------------------------------------------------- /sources/builtin_components/text/constructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/constructor.c -------------------------------------------------------------------------------- /sources/builtin_components/text/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/draw.c -------------------------------------------------------------------------------- /sources/builtin_components/text/events_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/events_keyboard.c -------------------------------------------------------------------------------- /sources/builtin_components/text/events_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/events_mouse.c -------------------------------------------------------------------------------- /sources/builtin_components/text/events_wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/events_wheel.c -------------------------------------------------------------------------------- /sources/builtin_components/text/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/builtin_components/text/style.c -------------------------------------------------------------------------------- /sources/components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/components.c -------------------------------------------------------------------------------- /sources/components_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/components_draw.c -------------------------------------------------------------------------------- /sources/components_internal_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/components_internal_events.c -------------------------------------------------------------------------------- /sources/components_internal_events_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/components_internal_events_handlers.c -------------------------------------------------------------------------------- /sources/components_user_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/components_user_events.c -------------------------------------------------------------------------------- /sources/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/defaults.c -------------------------------------------------------------------------------- /sources/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/draw.c -------------------------------------------------------------------------------- /sources/element_getters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/element_getters.c -------------------------------------------------------------------------------- /sources/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/errors.c -------------------------------------------------------------------------------- /sources/fonts_manager/fonts_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/fonts_manager/fonts_manager.c -------------------------------------------------------------------------------- /sources/fonts_manager/fonts_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/fonts_manager/fonts_search.c -------------------------------------------------------------------------------- /sources/internal_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/internal_events.c -------------------------------------------------------------------------------- /sources/libui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/libui.c -------------------------------------------------------------------------------- /sources/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/loop.c -------------------------------------------------------------------------------- /sources/mouse_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/mouse_tools.c -------------------------------------------------------------------------------- /sources/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style.c -------------------------------------------------------------------------------- /sources/style_sheet/css_color_parsers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style_sheet/css_color_parsers.c -------------------------------------------------------------------------------- /sources/style_sheet/css_color_presets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style_sheet/css_color_presets.c -------------------------------------------------------------------------------- /sources/style_sheet/css_prop_handler_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style_sheet/css_prop_handler_map.c -------------------------------------------------------------------------------- /sources/style_sheet/css_size_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style_sheet/css_size_parser.c -------------------------------------------------------------------------------- /sources/style_sheet/css_to_raw_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/style_sheet/css_to_raw_style.c -------------------------------------------------------------------------------- /sources/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/windows.c -------------------------------------------------------------------------------- /sources/windows_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/windows_draw.c -------------------------------------------------------------------------------- /sources/windows_internal_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/windows_internal_events.c -------------------------------------------------------------------------------- /sources/windows_internal_events_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/sources/windows_internal_events_handlers.c -------------------------------------------------------------------------------- /tests/main.c: -------------------------------------------------------------------------------- 1 | #include "libft.h" 2 | 3 | int main(void) 4 | { 5 | ft_putstr("hello\n"); 6 | return (0); 7 | } 8 | -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/tests/test.c -------------------------------------------------------------------------------- /tests/test_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KernelOverseer/GUImp/HEAD/tests/test_css.css --------------------------------------------------------------------------------