summaryrefslogtreecommitdiffstats
path: root/private/crt32/stdio/fwscanf.c
blob: 640a865e98ff5952144336eb3aa9530354e341fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/***
*fwscanf.c - read formatted data from stream
*
*	Copyright (c) 1985-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	defines fwscanf() - reads formatted data from stream
*
*Revision History:
*	05-16-92  KRS	Created from fscanf.c.
*
*******************************************************************************/

#include <cruntime.h>
#include <stdio.h>
#include <wchar.h>
#include <assert.h>
#include <stdarg.h>
#include <file2.h>
#include <internal.h>
#include <os2dll.h>

/***
*int fwscanf(stream, format, ...) - read formatted data from stream
*
*Purpose:
*	Reads formatted data from stream into arguments.  _input does the real
*	work here.
*
*Entry:
*	FILE *stream - stream to read data from
*	wchar_t *format - format string
*	followed by list of pointers to storage for the data read.  The number
*	and type are controlled by the format string.
*
*Exit:
*	returns number of fields read and assigned
*
*Exceptions:
*
*******************************************************************************/

int _CALLTYPE2 fwscanf (
	FILE *stream,
	const wchar_t *format,
	...
	)
/*
 * 'F'ile (stream) 'W'char_t 'SCAN', 'F'ormatted
 */
{
	int retval;
#ifdef MTHREAD
	int index;
#endif

	va_list arglist;

	va_start(arglist, format);

	assert(stream != NULL);
	assert(format != NULL);

#ifdef MTHREAD
	index = _iob_index(stream);
#endif
	_lock_str(index);
	retval = (_winput(stream,format,arglist));
	_unlock_str(index);

	return(retval);
}