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