diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -15,8 +15,14 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <stdio.h> +#include "ui.h" + int -main(int argc, char *argv[]) +main (int argc, char* argv[]) { - return 0; + ui *ui = ui_create (); + ui_loop (ui); + ui_destroy (ui); + return 0; } |