ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/news.h
Revision: 1.2
Committed: Sat Jul 21 01:29:07 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# Content
1 /*
2 * Copyright © 2005 William Pitcock, et al.
3 * Rights to this code are as documented in doc/pod/license.pod.
4 *
5 * Data structures for news information.
6 *
7 * $Id: news.h,v 1.1 2007-07-19 08:24:50 pippijn Exp $
8 */
9
10 #ifndef NEWS_H
11 #define NEWS_H
12
13 struct news_t
14 {
15 myuser_t *user;
16 time_t date;
17 char *text;
18 };
19
20 #endif