1 /* 2 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR> 3 This program and the accompanying materials are licensed and made available 4 under the terms and conditions of the BSD License that accompanies this 5 distribution. The full text of the license may be found at 6 http://opensource.org/licenses/bsd-license. 7 8 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 9 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 10 11 * Copyright (c) 2002 Tim J. Robbins. 12 * All rights reserved. 13 * 14 * Redistribution and use in source and binary forms, with or without 15 * modification, are permitted provided that the following conditions 16 * are met: 17 * 1. Redistributions of source code must retain the above copyright 18 * notice, this list of conditions and the following disclaimer. 19 * 2. Redistributions in binary form must reproduce the above copyright 20 * notice, this list of conditions and the following disclaimer in the 21 * documentation and/or other materials provided with the distribution. 22 * 23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 * SUCH DAMAGE. 34 * 35 * Original version ID: 36 * FreeBSD: src/lib/libc/stdio/fputws.c,v 1.4 2002/09/20 13:25:40 tjr Exp 37 NetBSD: fputws.c,v 1.1 2003/03/07 07:11:37 tshiozak Exp 38 */ 39 #include <LibConfig.h> 40 #include <sys/EfiCdefs.h> 41 42 #include <assert.h> 43 #include <errno.h> 44 #include <stdio.h> 45 #include <wchar.h> 46 #include "reentrant.h" 47 #include "local.h" 48 49 int 50 fputws( 51 const wchar_t * __restrict ws, 52 FILE * __restrict fp 53 ) 54 { 55 _DIAGASSERT(fp != NULL); 56 _DIAGASSERT(ws != NULL); 57 if(fp == NULL) { 58 errno = EINVAL; 59 return (EOF); 60 } 61 62 FLOCKFILE(fp); 63 _SET_ORIENTATION(fp, 1); 64 65 while (*ws != '\0') { 66 if (__fputwc_unlock(*ws++, fp) == WEOF) { 67 FUNLOCKFILE(fp); 68 return (-1); 69 } 70 } 71 FUNLOCKFILE(fp); 72 73 return (0); 74 } 75