blob: 5f773a3fc536b4dedf8afe61d5b7f8b8cf1ab610 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef __MICROBBS_ARTICLES_H
#define __MICROBBS_ARTICLES_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>
//part of libterm
#include "libterm/term.h"
#include "logs.h"
//part of libadt
#include "list.h"
#define WORKING_DIR "article"
int bbs_article( term_screen*, const char* );
int bbs_article_list( term_screen*, const char* );
#endif
|