#include "postgres_fe.h"
#include "mb/pg_wchar.h"
Go to the source code of this file.
Functions | |
int | pg_wchar_strncmp (const pg_wchar *s1, const pg_wchar *s2, size_t n) |
int | pg_char_and_wchar_strncmp (const char *s1, const pg_wchar *s2, size_t n) |
size_t | pg_wchar_strlen (const pg_wchar *str) |
int pg_char_and_wchar_strncmp | ( | const char * | s1, | |
const pg_wchar * | s2, | |||
size_t | n | |||
) |
size_t pg_wchar_strlen | ( | const pg_wchar * | str | ) |
Definition at line 70 of file wstrncmp.c.
Referenced by pg_wchar2mb().
{ const pg_wchar *s; for (s = str; *s; ++s) ; return (s - str); }