summaryrefslogtreecommitdiff
path: root/src/common/wchar.c
diff options
context:
space:
mode:
authorTom Lane2020-01-16 20:58:24 +0000
committerTom Lane2020-01-16 20:58:55 +0000
commit3d4cb5d6c180e38ebf84f6403cfa18c09d0b738e (patch)
treec00d81ed80f4ad926e838b9e1c5dc4fda161cf61 /src/common/wchar.c
parente6afa8918c461c1dd80c5063a950518fa4e950cd (diff)
Update header comments for wchar.c and encnames.c.
Bring these into common style (including having proper copyright notices) and adjust their self-declaration of where they live. Discussion: https://postgr.es/m/CA+TgmoYO8oq-iy8E02rD8eX25T-9SmyxKWqqks5OMHxKvGXpXQ@mail.gmail.com
Diffstat (limited to 'src/common/wchar.c')
-rw-r--r--src/common/wchar.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/common/wchar.c b/src/common/wchar.c
index 02e2588ffe..74a88239a1 100644
--- a/src/common/wchar.c
+++ b/src/common/wchar.c
@@ -1,10 +1,15 @@
-/*
- * conversion functions between pg_wchar and multibyte streams.
- * Tatsuo Ishii
- * src/backend/utils/mb/wchar.c
+/*-------------------------------------------------------------------------
+ *
+ * wchar.c
+ * Functions for working with multibyte characters in various encodings.
+ *
+ * Portions Copyright (c) 1998-2020, PostgreSQL Global Development Group
+ *
+ * IDENTIFICATION
+ * src/common/wchar.c
*
+ *-------------------------------------------------------------------------
*/
-/* can be used in either frontend or backend */
#ifdef FRONTEND
#include "postgres_fe.h"
#else