mirror of
https://github.com/HamletDuFromage/sigpatches-updater.git
synced 2024-11-08 13:11:55 +00:00
14 lines
No EOL
353 B
C++
14 lines
No EOL
353 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <switch.h>
|
|
|
|
#define VERSION "0.2"
|
|
|
|
#define WIDTH 80 // The width of the console
|
|
#define HEIGHT 45 // Height of the console
|
|
|
|
void displayList(std::vector<std::string> items, int cursor);
|
|
void viewHeader();
|
|
void viewHelp();
|
|
std::string prettifyString(const char * s, const char * modifier); |