1/*-------------------------------------------------------------------------
2 *
3 * unicode_norm.h
4 * Routines for normalizing Unicode strings
5 *
6 * These definitions are used by both frontend and backend code.
7 *
8 * Copyright (c) 2017-2019, PostgreSQL Global Development Group
9 *
10 * src/include/common/unicode_norm.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef UNICODE_NORM_H
15#define UNICODE_NORM_H
16
17#include "mb/pg_wchar.h"
18
19extern pg_wchar *unicode_normalize_kc(const pg_wchar *input);
20
21#endif /* UNICODE_NORM_H */
22