diff options
Diffstat (limited to 'door.h')
-rw-r--r-- | door.h | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +#ifndef __MICROBBS_DOOR_H +#define __MICROBBS_DOOR_H + +#include <stdio.h> +#include <stdlib.h> +#include <stdint.h> +#include <dirent.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> +#include <fcntl.h> +#include <termios.h> + + +#include "kconfig.h" +#include "list.h" +#include "sds.h" + +#include "libterm/term.h" +#include "libterm/term_io.h" + +int bbs_door( term_screen *ts, const char *dir_name ); + +#endif
\ No newline at end of file |