summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/mbsset.c
blob: 0884f0e6a2765746d0097c9b03e0693339883f0d (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
/***
*mbsset.asm - Sets all charcaters of string to given character (MBCS)
*
*	Copyright (c) 1985-1992, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*	Sets all charcaters of string to given character (MBCS)
*
*Revision History:
*	11-19-92  KRS	Ported from 16-bit sources.
*	08-20-93  CFW   Change short params to int for 32-bit tree.
*
*******************************************************************************/

#ifdef _MBCS
#include <cruntime.h>
#include <mbdata.h>
#include <mbctype.h>
#include <mbstring.h>

/***
* mbsset - Sets all charcaters of string to given character (MBCS)
*
*Purpose:
*	Sets all of characters in string (except the terminating '/0'
*	character) equal to the supplied character.  Handles MBCS
*	chars correctly.
*
*Entry:
*	unsigned char *string = string to modify
*	unsigned int val = value to fill string with
*
*Exit:
*	returns string = now filled with the specified char
*
*Uses:
*
*Exceptions:
*
*******************************************************************************/

unsigned char * _CRTAPI1 _mbsset( string, val )
unsigned char *string;
unsigned int val;
{
	unsigned char  *start = string;
	unsigned char highval, lowval;

	if (highval = (unsigned char) (val>>8)) {

		/* 2-byte value */

		lowval = (unsigned char)(val & 0x00ff);

		while (*string) {

			*string++ = highval;
			if (*string)
				*string++ = lowval;
			else
				/* don't orphan lead byte */
				string[-1] = ' ';
			}

	}

	else {
		/* single byte value */

		while (*string)
			*string++ = (unsigned char)val;
	}

	return(start);
}
#endif	/* _MBCS */