14 lines
236 B
C
14 lines
236 B
C
#ifndef __MENU_H__
|
|
#define __MENU_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <stdnoreturn.h>
|
|
|
|
noreturn void menu(bool first_run);
|
|
|
|
noreturn void boot(char *config);
|
|
|
|
char *config_entry_editor(const char *title, const char *orig_entry);
|
|
|
|
#endif
|