2011-04-15 06:42:48 +00:00
|
|
|
/*
|
2012-08-16 03:47:55 +00:00
|
|
|
* $Id$
|
2011-04-15 06:42:48 +00:00
|
|
|
*
|
2019-06-06 05:28:23 +00:00
|
|
|
Copyright (c) 2006-2019 Chung, Hyung-Hwan. All rights reserved.
|
2014-11-19 14:42:24 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2011-04-15 06:42:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <qse/cmn/str.h>
|
|
|
|
|
|
|
|
|
|
|
|
qse_size_t qse_mbsrot (qse_mchar_t* str, int dir, qse_size_t n)
|
|
|
|
{
|
|
|
|
return qse_mbsxrot (str, qse_mbslen(str), dir, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
qse_size_t qse_mbsxrot (qse_mchar_t* str, qse_size_t len, int dir, qse_size_t n)
|
|
|
|
{
|
|
|
|
qse_size_t first, last, count, index, nk;
|
|
|
|
qse_mchar_t c;
|
|
|
|
|
|
|
|
if (dir == 0 || len == 0) return len;
|
|
|
|
if ((n %= len) == 0) return len;
|
|
|
|
|
|
|
|
if (dir > 0) n = len - n;
|
|
|
|
first = 0; nk = len - n; count = 0;
|
|
|
|
|
|
|
|
while (count < n)
|
|
|
|
{
|
|
|
|
last = first + nk;
|
|
|
|
index = first;
|
|
|
|
c = str[first];
|
|
|
|
do
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
while (index < nk)
|
|
|
|
{
|
|
|
|
str[index] = str[index + n];
|
|
|
|
index += n;
|
|
|
|
}
|
|
|
|
if (index == last) break;
|
|
|
|
str[index] = str[index - nk];
|
|
|
|
index -= nk;
|
|
|
|
}
|
|
|
|
while (1);
|
|
|
|
str[last] = c; first++;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
qse_size_t qse_wcsrot (qse_wchar_t* str, int dir, qse_size_t n)
|
|
|
|
{
|
|
|
|
return qse_wcsxrot (str, qse_wcslen(str), dir, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
qse_size_t qse_wcsxrot (qse_wchar_t* str, qse_size_t len, int dir, qse_size_t n)
|
|
|
|
{
|
|
|
|
qse_size_t first, last, count, index, nk;
|
|
|
|
qse_wchar_t c;
|
|
|
|
|
|
|
|
if (dir == 0 || len == 0) return len;
|
|
|
|
if ((n %= len) == 0) return len;
|
|
|
|
|
|
|
|
if (dir > 0) n = len - n;
|
|
|
|
first = 0; nk = len - n; count = 0;
|
|
|
|
|
|
|
|
while (count < n)
|
|
|
|
{
|
|
|
|
last = first + nk;
|
|
|
|
index = first;
|
|
|
|
c = str[first];
|
|
|
|
do
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
while (index < nk)
|
|
|
|
{
|
|
|
|
str[index] = str[index + n];
|
|
|
|
index += n;
|
|
|
|
}
|
|
|
|
if (index == last) break;
|
|
|
|
str[index] = str[index - nk];
|
|
|
|
index -= nk;
|
|
|
|
}
|
|
|
|
while (1);
|
|
|
|
str[last] = c; first++;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|