Subversion Repositories Okuu

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: ok_news.h 3 2024-09-10 19:21:48Z nishi $ */

#ifndef __OK_NEWS_H__
#define __OK_NEWS_H__

struct news_entry {
        char* from;
        char* content;
};

void ok_news_init(void);
int ok_news_read(const char* path);

#ifndef OK_NEWS_SRC
extern struct news_entry news_entry;
#endif

#endif