mirror of
https://github.com/fairyglade/ly
synced 2024-11-18 03:25:31 +00:00
16 lines
349 B
C
16 lines
349 B
C
#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
|