blob: 25977b9a71fe5dd6db472eb3ffea2b4ffd4ed33e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __MICROBBS_ARTICLES_H
#define __MICROBBS_ARTICLES_H
#include <stdio.h>
#include <stdlib.h>
#include "libterm/term.h"
#include "logs.h"
int bbs_article( term_screen*, const char* );
#endif
|