1 | /** @file
|
---|
2 | Implementation of a subroutine version of the macro getchar,
|
---|
3 | as declared in <stdio.h>.
|
---|
4 |
|
---|
5 | Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
---|
6 | This program and the accompanying materials are licensed and made available
|
---|
7 | under the terms and conditions of the BSD License that accompanies this
|
---|
8 | distribution. The full text of the license may be found at
|
---|
9 | http://opensource.org/licenses/bsd-license.php.
|
---|
10 |
|
---|
11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
13 |
|
---|
14 | Copyright (c) 1990, 1993
|
---|
15 | The Regents of the University of California. All rights reserved.
|
---|
16 |
|
---|
17 | This code is derived from software contributed to Berkeley by
|
---|
18 | Chris Torek.
|
---|
19 |
|
---|
20 | Redistribution and use in source and binary forms, with or without
|
---|
21 | modification, are permitted provided that the following conditions
|
---|
22 | are met:
|
---|
23 | - Redistributions of source code must retain the above copyright
|
---|
24 | notice, this list of conditions and the following disclaimer.
|
---|
25 | - Redistributions in binary form must reproduce the above copyright
|
---|
26 | notice, this list of conditions and the following disclaimer in the
|
---|
27 | documentation and/or other materials provided with the distribution.
|
---|
28 | - Neither the name of the University nor the names of its contributors
|
---|
29 | may be used to endorse or promote products derived from this software
|
---|
30 | without specific prior written permission.
|
---|
31 |
|
---|
32 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
---|
33 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
34 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
35 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
|
---|
36 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
---|
37 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
---|
38 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
---|
39 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
---|
40 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
---|
41 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
---|
42 | POSSIBILITY OF SUCH DAMAGE.
|
---|
43 |
|
---|
44 | NetBSD: getchar.c,v 1.9 2003/08/07 16:43:27 agc Exp
|
---|
45 | getchar.c 8.1 (Berkeley) 6/4/93
|
---|
46 | **/
|
---|
47 | #include <LibConfig.h>
|
---|
48 |
|
---|
49 | #include <stdio.h>
|
---|
50 | #include "reentrant.h"
|
---|
51 | #include "local.h"
|
---|
52 |
|
---|
53 | #undef getchar
|
---|
54 | #undef getchar_unlocked
|
---|
55 |
|
---|
56 | int
|
---|
57 | getchar( void )
|
---|
58 | {
|
---|
59 | FILE *fp = stdin;
|
---|
60 | int r;
|
---|
61 |
|
---|
62 | FLOCKFILE(fp);
|
---|
63 | r = __sgetc(fp);
|
---|
64 | FUNLOCKFILE(fp);
|
---|
65 | return r;
|
---|
66 | }
|
---|
67 |
|
---|
68 | int
|
---|
69 | getchar_unlocked( void )
|
---|
70 | {
|
---|
71 | return (__sgetc(stdin));
|
---|
72 | }
|
---|