PostgreSQL Source Code  git master
stem_ISO_8859_1_dutch.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_envdutch_ISO_8859_1_create_env (void)
 
void dutch_ISO_8859_1_close_env (struct SN_env *z)
 
int dutch_ISO_8859_1_stem (struct SN_env *z)
 

Function Documentation

◆ dutch_ISO_8859_1_close_env()

void dutch_ISO_8859_1_close_env ( struct SN_env z)

Definition at line 602 of file stem_ISO_8859_1_dutch.c.

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

References SN_close_env().

◆ dutch_ISO_8859_1_create_env()

struct SN_env* dutch_ISO_8859_1_create_env ( void  )

Definition at line 600 of file stem_ISO_8859_1_dutch.c.

600 { 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().

◆ dutch_ISO_8859_1_stem()

int dutch_ISO_8859_1_stem ( struct SN_env z)

Definition at line 571 of file stem_ISO_8859_1_dutch.c.

571  {
572  { int c1 = z->c;
573  { int ret = r_prelude(z);
574  if (ret < 0) return ret;
575  }
576  z->c = c1;
577  }
578  { int c2 = z->c;
579  { int ret = r_mark_regions(z);
580  if (ret < 0) return ret;
581  }
582  z->c = c2;
583  }
584  z->lb = z->c; z->c = z->l;
585 
586 
587  { int ret = r_standard_suffix(z);
588  if (ret < 0) return ret;
589  }
590  z->c = z->lb;
591  { int c3 = z->c;
592  { int ret = r_postlude(z);
593  if (ret < 0) return ret;
594  }
595  z->c = c3;
596  }
597  return 1;
598 }
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().