forked from github/server
6acb1e22c5
- implemented unicode_utf8_strcasecmp function - fixed some xml files - code compiles and runs on the console TODO: * switch from xmlChar to char again * eliminate remaining warnings * report.[hc] are still disabled OPTIONAL: * handle latin1 input?
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/* vi: set ts=2:
|
|
*
|
|
*
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
*
|
|
* based on:
|
|
*
|
|
* Atlantis v1.0 13 September 1993 Copyright 1993 by Russell Wallace
|
|
* Atlantis v1.7 Copyright 1996 by Alex Schröder
|
|
*
|
|
* This program may not be used, modified or distributed without
|
|
* prior permission by the authors of Eressea.
|
|
* This program may not be sold or used commercially without prior written
|
|
* permission from the authors.
|
|
*/
|
|
|
|
#ifndef H_GC_LAWS
|
|
#define H_GC_LAWS
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int writepasswd(void);
|
|
int getoption(void);
|
|
int wanderoff(struct region * r, int p);
|
|
void demographics(void);
|
|
void last_orders(void);
|
|
void find_address(void);
|
|
void update_guards(void);
|
|
extern void deliverMail(struct faction * f, struct region * r, struct unit * u, const xmlChar *s, struct unit * receiver);
|
|
|
|
/* eressea-specific. put somewhere else, please. */
|
|
void processorders(void);
|
|
extern struct attrib_type at_germs;
|
|
|
|
extern int dropouts[2];
|
|
extern int * age;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|