1#ifndef TEXTBOX_H_INCLUDED
2#define TEXTBOX_H_INCLUDED
3
4void show_error(const char *msg, int err);
5void show_alsa_error(const char *msg, int err);
6void show_text(const char *const *text_lines, unsigned int count,
7	       const char *title);
8void show_textfile(const char *file_name);
9
10#endif
11