fwprintf.c (c5604d0a50cc18e7c5546e9c77a8fdcb69cb5e3c) fwprintf.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 <stdarg.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 <stdarg.h>
36#include <stdio.h>
37#include <wchar.h>
38#include <xlocale.h>
33
34int
35fwprintf(FILE * __restrict fp, const wchar_t * __restrict fmt, ...)
36{
37 int ret;
38 va_list ap;
39
40 va_start(ap, fmt);
41 ret = vfwprintf(fp, fmt, ap);
42 va_end(ap);
43
44 return (ret);
45}
39
40int
41fwprintf(FILE * __restrict fp, const wchar_t * __restrict fmt, ...)
42{
43 int ret;
44 va_list ap;
45
46 va_start(ap, fmt);
47 ret = vfwprintf(fp, fmt, ap);
48 va_end(ap);
49
50 return (ret);
51}
52int
53fwprintf_l(FILE * __restrict fp, locale_t locale, const wchar_t * __restrict fmt, ...)
54{
55 int ret;
56 va_list ap;
57
58 va_start(ap, fmt);
59 ret = vfwprintf_l(fp, locale, fmt, ap);
60 va_end(ap);
61
62 return (ret);
63}