PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
stem_ISO_8859_1_danish.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_envdanish_ISO_8859_1_create_env (void)
 
void danish_ISO_8859_1_close_env (struct SN_env *z)
 
int danish_ISO_8859_1_stem (struct SN_env *z)
 

Function Documentation

◆ danish_ISO_8859_1_close_env()

void danish_ISO_8859_1_close_env ( struct SN_env z)

Definition at line 315 of file stem_ISO_8859_1_danish.c.

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

References SN_close_env().

◆ danish_ISO_8859_1_create_env()

struct SN_env * danish_ISO_8859_1_create_env ( void  )

Definition at line 313 of file stem_ISO_8859_1_danish.c.

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

References SN_create_env().

◆ danish_ISO_8859_1_stem()

int danish_ISO_8859_1_stem ( struct SN_env z)

Definition at line 276 of file stem_ISO_8859_1_danish.c.

276 {
277 { int c1 = z->c;
278 { int ret = r_mark_regions(z);
279 if (ret < 0) return ret;
280 }
281 z->c = c1;
282 }
283 z->lb = z->c; z->c = z->l;
284
285 { int m2 = z->l - z->c; (void)m2;
286 { int ret = r_main_suffix(z);
287 if (ret < 0) return ret;
288 }
289 z->c = z->l - m2;
290 }
291 { int m3 = z->l - z->c; (void)m3;
292 { int ret = r_consonant_pair(z);
293 if (ret < 0) return ret;
294 }
295 z->c = z->l - m3;
296 }
297 { int m4 = z->l - z->c; (void)m4;
298 { int ret = r_other_suffix(z);
299 if (ret < 0) return ret;
300 }
301 z->c = z->l - m4;
302 }
303 { int m5 = z->l - z->c; (void)m5;
304 { int ret = r_undouble(z);
305 if (ret < 0) return ret;
306 }
307 z->c = z->l - m5;
308 }
309 z->c = z->lb;
310 return 1;
311}
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_undouble(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(), r_other_suffix(), and r_undouble().