1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/*
Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin
Copyright (C) 2005- The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file COPYING for details.
*/
#ifndef CHIRP_GROUP_H
#define CHIRP_GROUP_H
#include <limits.h>
#ifndef PATH_MAX // Hurd
#define MATH_MAX 1024
#endif
extern char chirp_group_base_url[PATH_MAX];
extern int chirp_group_cache_time;
int chirp_group_lookup(const char *group, const char *subject);
#endif
/* vim: set noexpandtab tabstop=4: */
|