9 lines
123 B
C
9 lines
123 B
C
#ifndef __MENU_H__
|
|
#define __MENU_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
char *menu(char **cmdline_ret, bool disable_timeout);
|
|
|
|
#endif
|