PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
stem_ISO_8859_1_swedish.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

struct SN_envswedish_ISO_8859_1_create_env (void)
 
void swedish_ISO_8859_1_close_env (struct SN_env *z)
 
int swedish_ISO_8859_1_stem (struct SN_env *z)
 

Function Documentation

◆ swedish_ISO_8859_1_close_env()

void swedish_ISO_8859_1_close_env ( struct SN_env z)

Definition at line 287 of file stem_ISO_8859_1_swedish.c.

287{ SN_close_env(z, 0); }
void SN_close_env(struct SN_env *z, int S_size)
Definition: api.c:34

References SN_close_env().

◆ swedish_ISO_8859_1_create_env()

struct SN_env * swedish_ISO_8859_1_create_env ( void  )

Definition at line 285 of file stem_ISO_8859_1_swedish.c.

285{ return SN_create_env(0, 2); }
struct SN_env * SN_create_env(int S_size, int I_size)
Definition: api.c:3

References SN_create_env().

◆ swedish_ISO_8859_1_stem()

int swedish_ISO_8859_1_stem ( struct SN_env z)

Definition at line 254 of file stem_ISO_8859_1_swedish.c.

254 {
255 { int c1 = z->c;
256 { int ret = r_mark_regions(z);
257 if (ret < 0) return ret;
258 }
259 z->c = c1;
260 }
261 z->lb = z->c; z->c = z->l;
262
263 { int m2 = z->l - z->c; (void)m2;
264 { int ret = r_main_suffix(z);
265 if (ret < 0) return ret;
266 }
267 z->c = z->l - m2;
268 }
269 { int m3 = z->l - z->c; (void)m3;
270 { int ret = r_consonant_pair(z);
271 if (ret < 0) return ret;
272 }
273 z->c = z->l - m3;
274 }
275 { int m4 = z->l - z->c; (void)m4;
276 { int ret = r_other_suffix(z);
277 if (ret < 0) return ret;
278 }
279 z->c = z->l - m4;
280 }
281 z->c = z->lb;
282 return 1;
283}
static int r_other_suffix(struct SN_env *z)
static int r_consonant_pair(struct SN_env *z)
static int r_main_suffix(struct SN_env *z)
static int r_mark_regions(struct SN_env *z)
int lb
Definition: api.h:16
int c
Definition: api.h:16
int l
Definition: api.h:16

References SN_env::c, SN_env::l, SN_env::lb, r_consonant_pair(), r_main_suffix(), r_mark_regions(), and r_other_suffix().