comparison src/database.h @ 482:a04c52f87b6e noffle

[svn] * docs/noffle.1,src/database.h,src/database.c,src/noffle.c,src/server.c: Add new '-U, --uninteresting' option. This removes an article from the list of requested articles and removes its INTERESTING marker.
author bears
date Thu, 14 Oct 2004 00:26:48 +0100
parents 3477050e8d10
children
comparison
equal deleted inserted replaced
481:0a5dc5f69746 482:a04c52f87b6e
1 /* 1 /*
2 database.h 2 database.h
3 3
4 Article database. 4 Article database.
5 5
6 $Id: database.h 403 2002-11-10 11:32:17Z bears $ 6 $Id: database.h 629 2004-10-13 23:26:48Z bears $
7 */ 7 */
8 8
9 #ifndef DB_H 9 #ifndef DB_H
10 #define DB_H 10 #define DB_H
11 11
113 113
114 /* Rebuild the article database. */ 114 /* Rebuild the article database. */
115 Bool 115 Bool
116 Db_rebuild( void ); 116 Db_rebuild( void );
117 117
118 /* Utility function - find the upstream server for a particular message */
119 Bool
120 Db_findServer( const char *msgId, Str server );
121
118 #endif 122 #endif