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

Function Documentation

◆ german_ISO_8859_1_close_env()

void german_ISO_8859_1_close_env ( struct SN_env z)

Definition at line 489 of file stem_ISO_8859_1_german.c.

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

References SN_close_env().

◆ german_ISO_8859_1_create_env()

struct SN_env * german_ISO_8859_1_create_env ( void  )

Definition at line 487 of file stem_ISO_8859_1_german.c.

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

References SN_create_env().

◆ german_ISO_8859_1_stem()

int german_ISO_8859_1_stem ( struct SN_env z)

Definition at line 458 of file stem_ISO_8859_1_german.c.

458 {
459 { int c1 = z->c;
460 { int ret = r_prelude(z);
461 if (ret < 0) return ret;
462 }
463 z->c = c1;
464 }
465 { int c2 = z->c;
466 { int ret = r_mark_regions(z);
467 if (ret < 0) return ret;
468 }
469 z->c = c2;
470 }
471 z->lb = z->c; z->c = z->l;
472
473
474 { int ret = r_standard_suffix(z);
475 if (ret < 0) return ret;
476 }
477 z->c = z->lb;
478 { int c3 = z->c;
479 { int ret = r_postlude(z);
480 if (ret < 0) return ret;
481 }
482 z->c = c3;
483 }
484 return 1;
485}
static int r_standard_suffix(struct SN_env *z)
static int r_postlude(struct SN_env *z)
static int r_prelude(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_mark_regions(), r_postlude(), r_prelude(), and r_standard_suffix().