summaryrefslogtreecommitdiff
path: root/src/include/utils/pg_locale.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/pg_locale.h')
-rw-r--r--src/include/utils/pg_locale.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h
deleted file mode 100644
index a1ba131a92a..00000000000
--- a/src/include/utils/pg_locale.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*-----------------------------------------------------------------------
- *
- * PostgreSQL locale utilities
- *
- * $Id: pg_locale.h,v 1.13 2002/05/17 01:19:19 tgl Exp $
- *
- * Copyright (c) 2002, PostgreSQL Global Development Group
- *
- *-----------------------------------------------------------------------
- */
-
-#ifndef _PG_LOCALE_
-#define _PG_LOCALE_
-
-#include <locale.h>
-
-extern char *locale_messages;
-extern char *locale_monetary;
-extern char *locale_numeric;
-extern char *locale_time;
-
-extern const char *locale_messages_assign(const char *value,
- bool doit, bool interactive);
-extern const char *locale_monetary_assign(const char *value,
- bool doit, bool interactive);
-extern const char *locale_numeric_assign(const char *value,
- bool doit, bool interactive);
-extern const char *locale_time_assign(const char *value,
- bool doit, bool interactive);
-
-extern bool lc_collate_is_c(void);
-
-/*
- * Return the POSIX lconv struct (contains number/money formatting
- * information) with locale information for all categories.
- */
-extern struct lconv *PGLC_localeconv(void);
-
-#endif /* _PG_LOCALE_ */