rulimine/stage23/menu.h
2021-12-11 22:22:48 +01:00

15 lines
251 B
C

#ifndef __MENU_H__
#define __MENU_H__
#include <stdbool.h>
__attribute__((noreturn))
void menu(bool timeout_enabled);
__attribute__((noreturn))
void boot(char *config);
char *config_entry_editor(const char *title, const char *orig_entry);
#endif