limine/stage23/menu.h

15 lines
251 B
C
Raw Normal View History

2020-06-05 21:27:52 +03:00
#ifndef __MENU_H__
#define __MENU_H__
#include <stdbool.h>
__attribute__((noreturn))
void menu(bool timeout_enabled);
2020-06-05 21:27:52 +03:00
2021-12-12 00:22:48 +03:00
__attribute__((noreturn))
void boot(char *config);
char *config_entry_editor(const char *title, const char *orig_entry);
2020-06-05 21:27:52 +03:00
#endif