2010-08-08 10:06:34 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 1998-2010, Enno Rehling <enno@eressea.de>
|
|
|
|
Katja Zedel <katze@felidae.kn-bremen.de
|
|
|
|
Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _UMLAUT_H
|
|
|
|
#define _UMLAUT_H
|
|
|
|
|
|
|
|
#include "variant.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define E_TOK_NOMATCH (-1)
|
|
|
|
#define E_TOK_SUCCESS 0
|
|
|
|
#define NODEHASHSIZE 8
|
2011-03-07 08:02:35 +01:00
|
|
|
|
2012-05-16 00:04:23 +02:00
|
|
|
int findtoken(const void *tk, const char *str, variant * result);
|
|
|
|
void addtoken(void **root, const char *str, variant id);
|
|
|
|
void freetokens(void *root);
|
2011-03-07 08:02:35 +01:00
|
|
|
|
2012-05-15 09:06:27 +02:00
|
|
|
char * transliterate(char * out, size_t size, const char * in);
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
typedef struct local_names {
|
|
|
|
struct local_names *next;
|
|
|
|
const struct locale *lang;
|
2012-05-16 00:04:23 +02:00
|
|
|
void * names;
|
2011-03-07 08:02:35 +01:00
|
|
|
} local_names;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|