diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
commit | 46785776c42143af8f5433bb580ff13f2a9f65e1 (patch) | |
tree | 0c1f6da64634a202ff20176865b4a9dc69b8ac40 /src/backend/regex/regc_locale.c | |
parent | 0e2b12bd9689ac4fd353f7dba33dd796d0e3a07d (diff) | |
download | postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.tar.gz postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.zip |
Another pgindent run with updated typedefs.
Diffstat (limited to 'src/backend/regex/regc_locale.c')
-rw-r--r-- | src/backend/regex/regc_locale.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/regex/regc_locale.c b/src/backend/regex/regc_locale.c index 69c7fd7214a..99ab48cd8a8 100644 --- a/src/backend/regex/regc_locale.c +++ b/src/backend/regex/regc_locale.c @@ -47,7 +47,7 @@ * permission to use and distribute the software in accordance with the * terms specified in this license. * - * $Header: /cvsroot/pgsql/src/backend/regex/regc_locale.c,v 1.2 2003/08/04 00:43:21 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/regex/regc_locale.c,v 1.3 2003/08/08 21:41:56 momjian Exp $ */ /* ASCII character-name table */ @@ -453,8 +453,8 @@ allmcces(struct vars * v, /* context */ */ static celt element(struct vars * v, /* context */ - chr * startp, /* points to start of name */ - chr * endp) /* points just past end of name */ + chr *startp, /* points to start of name */ + chr *endp) /* points just past end of name */ { struct cname *cn; size_t len; @@ -593,8 +593,8 @@ eclass(struct vars * v, /* context */ */ static struct cvec * cclass(struct vars * v, /* context */ - chr * startp, /* where the name starts */ - chr * endp, /* just past the end of the name */ + chr *startp, /* where the name starts */ + chr *endp, /* just past the end of the name */ int cases) /* case-independent? */ { size_t len; @@ -804,7 +804,7 @@ allcases(struct vars * v, /* context */ * stop at embedded NULs! */ static int /* 0 for equal, nonzero for unequal */ -cmp(const chr * x, const chr * y, /* strings to compare */ +cmp(const chr *x, const chr *y, /* strings to compare */ size_t len) /* exact length of comparison */ { return memcmp(VS(x), VS(y), len * sizeof(chr)); @@ -819,7 +819,7 @@ cmp(const chr * x, const chr * y, /* strings to compare */ * stop at embedded NULs! */ static int /* 0 for equal, nonzero for unequal */ -casecmp(const chr * x, const chr * y, /* strings to compare */ +casecmp(const chr *x, const chr *y, /* strings to compare */ size_t len) /* exact length of comparison */ { for (; len > 0; len--, x++, y++) |