summaryrefslogtreecommitdiffstats
path: root/private/crt32/mbstring/mbsrev.c
blob: 8c0a0f62ad9881d344afeec4256b8749ad9f8854 (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
/*** 
*mbsrev.c - Reverse a string in place (MBCS)
*
*	Copyright (c) 1988-1992, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*	Reverse a string in place (MBCS)
*
*Revision History:
*	11-19-92  KRS	Ported from 16-bit sources.
*
*******************************************************************************/

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


/***
* _mbsrev - Reverse a string in place (MBCS)
*
*Purpose:
*	Reverses the order of characters in the string.  The terminating
*	null character remains in place.  The order of MBCS characters
*       is not changed.
*
*Entry:
*	unsigned char *string = string to reverse
*
*Exit:
*       returns string - now with reversed characters
*
*Exceptions:
*
*******************************************************************************/

unsigned char * _CRTAPI1 _mbsrev(string)
unsigned char *string;
{

	unsigned char *start = string;
	unsigned char *left  = string;
	unsigned char c;

	/* first go through and reverse the bytes in MBCS chars */
        while ( *string ) {

		if ( _ISLEADBYTE(*string++) ) {
                        if ( *string ) {
                                c = *string;
                                *string = *(string - 1);
                                *(string - 1) = c;
                                string++;
                        }
                        else /* second byte is EOS */
                                break;
                }
        }

	/* now reverse the whole string */
        string--;
        while ( left < string ) {
                c = *left;
                *left++ = *string;
                *string-- = c;
        }

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