Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / snowball / libstemmer / api.h
blobba9d1c14bcae1f6e14a6d1154199099858e8a551
2 typedef unsigned char symbol;
4 /* Or replace 'char' above with 'short' for 16 bit characters.
6 More precisely, replace 'char' with whatever type guarantees the
7 character width you need. Note however that sizeof(symbol) should divide
8 HEAD, defined in header.h as 2*sizeof(int), without remainder, otherwise
9 there is an alignment problem. In the unlikely event of a problem here,
10 consult Martin Porter.
14 struct SN_env {
15 symbol * p;
16 int c; int l; int lb; int bra; int ket;
17 symbol * * S;
18 int * I;
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 extern struct SN_env * SN_create_env(int S_size, int I_size);
26 extern void SN_close_env(struct SN_env * z, int S_size);
28 extern int SN_set_current(struct SN_env * z, int size, const symbol * s);
30 #ifdef __cplusplus
32 #endif