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