blob: fde6dda93642e3f234e2ea88fd389d3466044f7f (
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
27
28
|
#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>
#include "kconfig.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
|