├── LICENSE ├── Makefile ├── README.md ├── assests ├── banner.png ├── cia.rsf ├── empty.text └── icon.png └── source ├── buttons.c ├── buttons.h ├── common.h ├── dir.c ├── dir.h ├── draw.c ├── draw.h ├── main.c ├── sort.c ├── sort.h └── xplorer.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/README.md -------------------------------------------------------------------------------- /assests/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/assests/banner.png -------------------------------------------------------------------------------- /assests/cia.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/assests/cia.rsf -------------------------------------------------------------------------------- /assests/empty.text: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assests/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/assests/icon.png -------------------------------------------------------------------------------- /source/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/buttons.c -------------------------------------------------------------------------------- /source/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/buttons.h -------------------------------------------------------------------------------- /source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/common.h -------------------------------------------------------------------------------- /source/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/dir.c -------------------------------------------------------------------------------- /source/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/dir.h -------------------------------------------------------------------------------- /source/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/draw.c -------------------------------------------------------------------------------- /source/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/draw.h -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/main.c -------------------------------------------------------------------------------- /source/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/sort.c -------------------------------------------------------------------------------- /source/sort.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "common.h" 4 | 5 | void bubble_sort_files(void); 6 | -------------------------------------------------------------------------------- /source/xplorer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hax0kartik/imgurup-3ds/HEAD/source/xplorer.c --------------------------------------------------------------------------------