#ifndef common_h_
#define common_h_

#include <curses.h>

int menu_select(WINDOW *win, int wh, int ww, char *prompt, char **options, 
    int nopt);
void draw_string_center(WINDOW *win, int ww, int y, char *s);

#endif