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?
21 lines
562 B
C
21 lines
562 B
C
/* vi: set ts=2:
|
|
* +-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
* | | Enno Rehling <enno@eressea.de>
|
|
* | Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
* | (c) 1998 - 2007 |
|
|
* | | This program may not be used, modified or distributed
|
|
* +-------------------+ without prior permission by the authors of Eressea.
|
|
*/
|
|
|
|
#ifndef GC_SPELLS_H
|
|
#define GC_SPELLS_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void register_gcspells(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|