Don't repeatedly register cache callbacks in pgoutput plugin.
[pgsql.git] / src / include / common / unicode_norm.h
blob99167d295259e1db102eff2520dae4bc36d786ef
1 /*-------------------------------------------------------------------------
3 * unicode_norm.h
4 * Routines for normalizing Unicode strings
6 * These definitions are used by both frontend and backend code.
8 * Copyright (c) 2017-2019, PostgreSQL Global Development Group
10 * src/include/common/unicode_norm.h
12 *-------------------------------------------------------------------------
14 #ifndef UNICODE_NORM_H
15 #define UNICODE_NORM_H
17 #include "mb/pg_wchar.h"
19 extern pg_wchar *unicode_normalize_kc(const pg_wchar *input);
21 #endif /* UNICODE_NORM_H */