pg_locale.h

来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· C头文件 代码 · 共 46 行

H
46
字号
/*----------------------------------------------------------------------- * * PostgreSQL locale utilities * * $PostgreSQL: pgsql/src/include/utils/pg_locale.h,v 1.22 2006/03/05 15:59:07 momjian Exp $ * * Copyright (c) 2002-2006, PostgreSQL Global Development Group * *----------------------------------------------------------------------- */#ifndef _PG_LOCALE_#define _PG_LOCALE_#include <locale.h>#include "utils/guc.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, GucSource source);extern const char *locale_monetary_assign(const char *value,					   bool doit, GucSource source);extern const char *locale_numeric_assign(const char *value,					  bool doit, GucSource source);extern const char *locale_time_assign(const char *value,				   bool doit, GucSource source);extern char *pg_perm_setlocale(int category, const char *locale);extern bool lc_collate_is_c(void);extern bool lc_ctype_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_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?