source: rtems/testsuites/psxtests/psxhdrs/wchar/vwscanf.c @ 8e06aff

5
Last change on this file since 8e06aff was 8e06aff, checked in by zehata <zenon.hans.taneka@…>, on 12/08/18 at 17:26:43

psxhdrs: Added POSIX Compliance Test for wchar.h (GCI 2018)

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 *  @file
3 *  @brief vwscanf() API Conformance Test
4 */
5
6/*
7 *  COPYRIGHT (c) 2018.
8 *  Zenon (zehata).
9 *
10 *  Permission to use, copy, modify, and/or distribute this software
11 *  for any purpose with or without fee is hereby granted.
12 *
13 *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
14 *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
15 *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
16 *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
17 *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
18 *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
19 *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 */
21
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#include <wchar.h>
27#include <stdarg.h>
28/*
29 Corresponds to ticket #3642, please remove the line
30 above and this comment when fixed
31*/
32
33int test(char *fmt, ...);
34
35int test(char *fmt, ...)
36{
37  const wchar_t *wc;
38  va_list va;
39
40  wc = 0;
41  va_start(va, fmt);
42  return vwscanf(wc, va);
43}
Note: See TracBrowser for help on using the repository browser.