aboutsummaryrefslogtreecommitdiff
path: root/locale/codeset_name.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-06-19 05:38:55 +0000
committerRoland McGrath <roland@gnu.org>1996-06-19 05:38:55 +0000
commit6990326c21e6d767e3531a00782af1e091eab4fe (patch)
tree152c349333df65328c835486fe719a4488856c90 /locale/codeset_name.c
parentbd1be8ec88e0e9b7c0dc8d4c0ebfea69a11290f7 (diff)
downloadglibc-6990326c21e6d767e3531a00782af1e091eab4fe.tar
glibc-6990326c21e6d767e3531a00782af1e091eab4fe.tar.gz
glibc-6990326c21e6d767e3531a00782af1e091eab4fe.tar.bz2
glibc-6990326c21e6d767e3531a00782af1e091eab4fe.zip
Wed Jun 19 01:27:57 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* math/Makefile (distribute): Add ieee-math.c. Wed Jun 19 03:24:58 1996 Ulrich Drepper <drepper@cygnus.com> * locale/codeset_name.c: New file. Provide function for information about currently used character set. * locale/Makefile (routines): Add codeset_name. * locale/langinfo.h (_NL_CTYPE_CODESET_NAME): Add new constant. * locale/localeinfo.h: Change magic number because of incompatible change. * locale/C-ctype.c: Add initializer for new field `codeset_name'. * locale/programs/ld-ctype.c: Implement handling of `codeset_name'. * locale/programs/locfile.c: Don't depend in pre-2.0 Linux specific name `MAX_IOVEC'. Instead use standard name `UIO_MAXIOV'. * locale/setlocale.c (setlocale): Initialize local variables to prevent warnings.
Diffstat (limited to 'locale/codeset_name.c')
-rw-r--r--locale/codeset_name.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/locale/codeset_name.c b/locale/codeset_name.c
new file mode 100644
index 0000000000..c7fd818e70
--- /dev/null
+++ b/locale/codeset_name.c
@@ -0,0 +1,31 @@
+/* Internal function to return the name of the current codeset.
+Copyright (C) 1996 Free Software Foundation, Inc.
+This file is part of the GNU C Library.
+Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
+
+The GNU C Library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public License as
+published by the Free Software Foundation; either version 2 of the
+License, or (at your option) any later version.
+
+The GNU C Library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with the GNU C Library; see the file COPYING.LIB. If
+not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA. */
+
+#include <langinfo.h>
+#include <locale.h>
+#include <stdlib.h>
+#include "localeinfo.h"
+
+
+const char *
+__ctype_get_codeset_name (void)
+{
+ return _NL_CURRENT (LC_CTYPE, _NL_CTYPE_CODESET_NAME);
+}