de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# This file and its contents are supplied under the terms of the
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# You may only use this file in accordance with the terms of version
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# 1.0 of the CDDL.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# source. A copy of the CDDL is also available via the Internet at
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# http://www.illumos.org/license/CDDL.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Copyright 2015 Garrett D'Amore <garrett@damore.org>
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Definitions found in locale.h
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Types.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoretype | locale_t | locale.h | -ALL SUSv4+
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amoretype | struct lconv | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Values.
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_CTYPE | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_COLLATE | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_TIME | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_NUMERIC | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_MONETARY | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_MESSAGES | int | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | LC_GLOBAL_LOCALE | locale_t | locale.h | -ALL SUSv4+
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorevalue | NULL | void * | locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore# Functions
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore#
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorefunc | duplocale |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale_t |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale_t |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale.h | -ALL SUSv4+
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorefunc | newlocale |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale_t |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore int; const char *; locale_t |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale.h | -ALL SUSv4+
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorefunc | freelocale |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore void |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale_t |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale.h | -ALL SUSv4+
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorefunc | localeconv |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore struct lconv * |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore void |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale.h | ALL
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amorefunc | setlocale |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore char * |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore int; const char * |\
de572d98af8238405c5d1292a788b1a85b0c68ebGarrett D'Amore locale.h | ALL