PostgreSQL Source Code git master
|
#include "mb/pg_wchar.h"
Go to the source code of this file.
Typedefs | |
typedef size_t(* | WordBoundaryNext) (void *wbstate) |
Functions | |
pg_wchar | unicode_lowercase_simple (pg_wchar code) |
pg_wchar | unicode_titlecase_simple (pg_wchar code) |
pg_wchar | unicode_uppercase_simple (pg_wchar code) |
pg_wchar | unicode_casefold_simple (pg_wchar code) |
size_t | unicode_strlower (char *dst, size_t dstsize, const char *src, ssize_t srclen, bool full) |
size_t | unicode_strtitle (char *dst, size_t dstsize, const char *src, ssize_t srclen, bool full, WordBoundaryNext wbnext, void *wbstate) |
size_t | unicode_strupper (char *dst, size_t dstsize, const char *src, ssize_t srclen, bool full) |
size_t | unicode_strfold (char *dst, size_t dstsize, const char *src, ssize_t srclen, bool full) |
typedef size_t(* WordBoundaryNext) (void *wbstate) |
Definition at line 19 of file unicode_case.h.
Definition at line 55 of file unicode_case.c.
References CaseFold, find_case_map(), and pg_case_map::simplemap.
Definition at line 31 of file unicode_case.c.
References CaseLower, find_case_map(), and pg_case_map::simplemap.
Referenced by pg_wc_tolower().
size_t unicode_strfold | ( | char * | dst, |
size_t | dstsize, | ||
const char * | src, | ||
ssize_t | srclen, | ||
bool | full | ||
) |
Definition at line 170 of file unicode_case.c.
References CaseFold, and convert_case().
Referenced by strfold_builtin(), and tfunc_fold().
size_t unicode_strlower | ( | char * | dst, |
size_t | dstsize, | ||
const char * | src, | ||
ssize_t | srclen, | ||
bool | full | ||
) |
Definition at line 82 of file unicode_case.c.
References CaseLower, and convert_case().
Referenced by strlower_builtin(), and tfunc_lower().
size_t unicode_strtitle | ( | char * | dst, |
size_t | dstsize, | ||
const char * | src, | ||
ssize_t | srclen, | ||
bool | full, | ||
WordBoundaryNext | wbnext, | ||
void * | wbstate | ||
) |
Definition at line 119 of file unicode_case.c.
References CaseTitle, and convert_case().
Referenced by strtitle_builtin(), and tfunc_title().
size_t unicode_strupper | ( | char * | dst, |
size_t | dstsize, | ||
const char * | src, | ||
ssize_t | srclen, | ||
bool | full | ||
) |
Definition at line 146 of file unicode_case.c.
References CaseUpper, and convert_case().
Referenced by strupper_builtin(), and tfunc_upper().
Definition at line 39 of file unicode_case.c.
References CaseTitle, find_case_map(), and pg_case_map::simplemap.
Definition at line 47 of file unicode_case.c.
References CaseUpper, find_case_map(), and pg_case_map::simplemap.
Referenced by pg_wc_toupper().