initial commit

This commit is contained in:
nullgemm
2019-06-10 16:05:54 +02:00
parent 303a80dae8
commit efc5c49de5
25 changed files with 3280 additions and 0 deletions

15
src/utils.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef H_LY_UTILS
#define H_LY_UTILS
#include "draw.h"
#include "inputs.h"
#include "config.h"
void desktop_load(struct desktop* target);
void hostname(char** out);
void free_hostname();
void switch_tty(struct term_buf* buf);
void save(struct desktop* desktop, struct text* login);
void load(struct desktop* desktop, struct text* login);
#endif