1 | /** @file
|
---|
2 | Single-byte character version of the setlocale function.
|
---|
3 |
|
---|
4 | Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
---|
5 | This program and the accompanying materials are licensed and made available under
|
---|
6 | the terms and conditions of the BSD License that accompanies this distribution.
|
---|
7 | The full text of the license may be found at
|
---|
8 | http://opensource.org/licenses/bsd-license.
|
---|
9 |
|
---|
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 |
|
---|
13 | * Copyright (c)1999 Citrus Project,
|
---|
14 | * All rights reserved.
|
---|
15 | *
|
---|
16 | * Redistribution and use in source and binary forms, with or without
|
---|
17 | * modification, are permitted provided that the following conditions
|
---|
18 | * are met:
|
---|
19 | * 1. Redistributions of source code must retain the above copyright
|
---|
20 | * notice, this list of conditions and the following disclaimer.
|
---|
21 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
22 | * notice, this list of conditions and the following disclaimer in the
|
---|
23 | * documentation and/or other materials provided with the distribution.
|
---|
24 | *
|
---|
25 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
---|
26 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
27 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
28 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
---|
29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
30 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
31 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
32 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
33 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
34 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
35 | * SUCH DAMAGE.
|
---|
36 |
|
---|
37 | * NetBSD: setlocale1.c,v 1.2 2003/03/11 17:23:07 tshiozak Exp
|
---|
38 | **/
|
---|
39 | #include <LibConfig.h>
|
---|
40 | #include <sys/EfiCdefs.h>
|
---|
41 |
|
---|
42 | #include "namespace.h"
|
---|
43 | #define __SETLOCALE_SOURCE__
|
---|
44 | #include <locale.h>
|
---|
45 | #include "rune.h"
|
---|
46 |
|
---|
47 | __warn_references(setlocale,
|
---|
48 | "warning: reference to compatibility setlocale(); include <locale.h> for correct reference")
|
---|
49 |
|
---|
50 | /*
|
---|
51 | * Preparation for the future import of multibyte locale.
|
---|
52 | * This function will ensure binary compatibility for old executables.
|
---|
53 | */
|
---|
54 | char *
|
---|
55 | setlocale(int category, const char *locale)
|
---|
56 | {
|
---|
57 | /* locale may be NULL */
|
---|
58 |
|
---|
59 | __mb_len_max_runtime = 1;
|
---|
60 | return __setlocale(category, locale);
|
---|
61 | }
|
---|