summaryrefslogtreecommitdiff
path: root/motd.h
blob: f3dfd63cf1ca2aaa304372f41cef7f30ab53ebb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __MICROBBS_MOTD_H
#define __MICROBBS_MOTD_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "libterm/print_utils.h"
#include "libterm/term.h"

//get file name
//calculate current termsize and then print motd in da middle
int bbs_motd( term_screen*, const char* );

#endif