summaryrefslogtreecommitdiffstats
path: root/private/crt32/convert/wtox.c
blob: c151692af32e9fce8beb9e326a32a783fcdc97db (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
73
74
75
76
77
78
79
80
81
82
/***
*wtox.c - _wtoi and _wtol conversion
*
*	Copyright (c) 1993, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	Converts a wide character string into an int or long.
*
*Revision History:
*	09-10-93  CFW	Module created, based on ASCII version.
*
*******************************************************************************/

#include <windows.h>
#include <stdlib.h>

#define INT_SIZE_LENGTH   20
#define LONG_SIZE_LENGTH  40

/***
*long _wtol(wchar_t *nptr) - Convert wide string to long
*
*Purpose:
*	Converts wide string pointed to by nptr to binary.
*	Overflow is not detected.  Because of this, we can just use
*	atol().
*
*Entry:
*	nptr = ptr to wide string to convert
*
*Exit:
*	return long value of the string
*
*Exceptions:
*	None - overflow is not detected.
*
*******************************************************************************/

long _CRTAPI1 _wtol(
	const wchar_t *nptr
	)
{
   char astring[INT_SIZE_LENGTH];
   int defused;

   WideCharToMultiByte (CP_ACP, 0, nptr, -1,
                        astring, INT_SIZE_LENGTH, NULL, &defused);

   return (atol(astring));
}

/***
*int _wtoi(wchar_t *nptr) - Convert wide string to int
*
*Purpose:
*	Converts wide string pointed to by nptr to binary.
*	Overflow is not detected.  Because of this, we can just use
*	atol().
*
*Entry:
*	nptr = ptr to wide string to convert
*
*Exit:
*	return int value of the string
*
*Exceptions:
*	None - overflow is not detected.
*
*******************************************************************************/

int _CRTAPI1 _wtoi(
	const wchar_t *nptr
	)
{
   char astring[INT_SIZE_LENGTH];
   int defused;

   WideCharToMultiByte (CP_ACP, 0, nptr, -1,
                        astring, INT_SIZE_LENGTH, NULL, &defused);

   return ((int)atol(astring));
}