getwc.c (e7e4715db22de68a703922a64c1a91d0f5e6c523) | getwc.c (3c87aa1d3dc1d8dad3efad322852a8e1e76dee55) |
---|---|
1/*- 2 * Copyright (c) 2002 Tim J. Robbins. 3 * All rights reserved. 4 * | 1/*- 2 * Copyright (c) 2002 Tim J. Robbins. 3 * All rights reserved. 4 * |
5 * Copyright (c) 2011 The FreeBSD Foundation 6 * All rights reserved. 7 * Portions of this software were developed by David Chisnall 8 * under sponsorship from the FreeBSD Foundation. 9 * |
|
5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. --- 12 unchanged lines hidden (view full) --- 25 */ 26 27#include <sys/cdefs.h> 28__FBSDID("$FreeBSD$"); 29 30#include "namespace.h" 31#include <stdio.h> 32#include <wchar.h> | 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. --- 12 unchanged lines hidden (view full) --- 30 */ 31 32#include <sys/cdefs.h> 33__FBSDID("$FreeBSD$"); 34 35#include "namespace.h" 36#include <stdio.h> 37#include <wchar.h> |
38#include <xlocale.h> |
|
33#include "un-namespace.h" 34#include "libc_private.h" 35#include "local.h" 36 37#undef getwc 38 39/* 40 * Synonym for fgetwc(). The only difference is that getwc(), if it is a 41 * macro, may evaluate `fp' more than once. 42 */ 43wint_t 44getwc(FILE *fp) 45{ 46 47 return (fgetwc(fp)); 48} | 39#include "un-namespace.h" 40#include "libc_private.h" 41#include "local.h" 42 43#undef getwc 44 45/* 46 * Synonym for fgetwc(). The only difference is that getwc(), if it is a 47 * macro, may evaluate `fp' more than once. 48 */ 49wint_t 50getwc(FILE *fp) 51{ 52 53 return (fgetwc(fp)); 54} |
55wint_t 56getwc_l(FILE *fp, locale_t locale) 57{ 58 59 return (fgetwc_l(fp, locale)); 60} |
|