Subversion Repositories Okuu

Rev

Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 nishi 1
/* $Id: ok_news.h 5 2024-09-11 00:26:25Z nishi $ */
2
 
3
#ifndef __OK_NEWS_H__
4
#define __OK_NEWS_H__
5
 
6
struct news_entry {
7
	char* from;
8
	char* content;
9
};
10
 
11
void ok_news_init(void);
12
int ok_news_read(const char* path);
5 nishi 13
int ok_news_write(const char* nick, const char* message);
3 nishi 14
 
15
#ifndef OK_NEWS_SRC
16
extern struct news_entry news_entry;
17
#endif
18
 
19
#endif