A small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters. Unlike GNU readline, which is GPL, this library uses a BSD license and can be used in any kind of program.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <algorithm> | |
| #include <fstream> | |
| #include <iostream> | |
| #include <iterator> | |
| #include <string> | |
| #include <unordered_set> | |
| #include <vector> | |
| namespace std { | |
| template <> struct hash<std::vector<int>> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <gtk/gtk.h> | |
| static void activate_main (GtkApplication *app, gpointer user_data); | |
| static void setup_tree_view (GtkWidget *treeview); | |
| static void populate_tree_store (GtkTreeStore *store); | |
| int | |
| main (int argc, | |
| char **argv) | |
| { |
NewerOlder