/* * Copyright © 2005 William Pitcock, et al. * Rights to this code are as documented in doc/LICENSE. * * Data structures for news information. * * $Id: news.h,v 1.1 2007/07/19 08:24:50 pippijn Exp $ */ #ifndef NEWS_H #define NEWS_H struct news_t { myuser_t *user; time_t date; char *text; }; #endif