added qse_strpbrk()
This commit is contained in:
53
qse/lib/cmn/str_pbrk.c
Normal file
53
qse/lib/cmn/str_pbrk.c
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* $Id: str_cnv.c 402 2011-03-18 15:07:21Z hyunghwan.chung $
|
||||
*
|
||||
Copyright 2006-2009 Chung, Hyung-Hwan.
|
||||
This file is part of QSE.
|
||||
|
||||
QSE is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation, either version 3 of
|
||||
the License, or (at your option) any later version.
|
||||
|
||||
QSE is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <qse/cmn/str.h>
|
||||
#include <qse/cmn/chr.h>
|
||||
|
||||
qse_mchar_t* qse_mbspbrk (const qse_mchar_t* str1, const qse_mchar_t* str2)
|
||||
{
|
||||
const qse_mchar_t* p1, * p2;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_MT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_MT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) return (qse_mchar_t*)p1;
|
||||
}
|
||||
}
|
||||
|
||||
return QSE_NULL;
|
||||
}
|
||||
|
||||
qse_wchar_t* qse_wcspbrk (const qse_wchar_t* str1, const qse_wchar_t* str2)
|
||||
{
|
||||
const qse_wchar_t* p1, * p2;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_WT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_WT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) return (qse_wchar_t*)p1;
|
||||
}
|
||||
}
|
||||
|
||||
return QSE_NULL;
|
||||
}
|
||||
|
106
qse/lib/cmn/str_spn.c
Normal file
106
qse/lib/cmn/str_spn.c
Normal file
@ -0,0 +1,106 @@
|
||||
/*
|
||||
* $Id: str_cnv.c 402 2011-03-18 15:07:21Z hyunghwan.chung $
|
||||
*
|
||||
Copyright 2006-2009 Chung, Hyung-Hwan.
|
||||
This file is part of QSE.
|
||||
|
||||
QSE is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation, either version 3 of
|
||||
the License, or (at your option) any later version.
|
||||
|
||||
QSE is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <qse/cmn/str.h>
|
||||
#include <qse/cmn/chr.h>
|
||||
|
||||
qse_size_t qse_mbsspn (const qse_mchar_t* str1, const qse_mchar_t* str2)
|
||||
{
|
||||
const qse_mchar_t* p1, * p2;
|
||||
qse_size_t n = 0;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_MT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_MT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) goto matched;
|
||||
}
|
||||
|
||||
/* didn't match anything */
|
||||
break;
|
||||
|
||||
matched:
|
||||
n++;
|
||||
}
|
||||
|
||||
return n;
|
||||
}
|
||||
|
||||
qse_size_t qse_wcsspn (const qse_wchar_t* str1, const qse_wchar_t* str2)
|
||||
{
|
||||
const qse_wchar_t* p1, * p2;
|
||||
qse_size_t n = 0;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_WT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_WT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) goto matched;
|
||||
}
|
||||
|
||||
/* didn't match anything */
|
||||
break;
|
||||
|
||||
matched:
|
||||
n++;
|
||||
}
|
||||
|
||||
return n;
|
||||
}
|
||||
|
||||
qse_size_t qse_mbscspn (const qse_mchar_t* str1, const qse_mchar_t* str2)
|
||||
{
|
||||
const qse_mchar_t* p1, * p2;
|
||||
qse_size_t n = 0;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_WT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_WT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) goto done;
|
||||
}
|
||||
|
||||
/* didn't match anything. increment the length */
|
||||
n++;
|
||||
}
|
||||
|
||||
done:
|
||||
return n;
|
||||
}
|
||||
|
||||
qse_size_t qse_wcscspn (const qse_wchar_t* str1, const qse_wchar_t* str2)
|
||||
{
|
||||
const qse_wchar_t* p1, * p2;
|
||||
qse_size_t n = 0;
|
||||
|
||||
for (p1 = str1; *p1 != QSE_WT('\0'); p1++)
|
||||
{
|
||||
for (p2 = str2; *p2 != QSE_WT('\0'); p2++)
|
||||
{
|
||||
if (*p2 == *p1) goto done;
|
||||
}
|
||||
|
||||
/* didn't match anything. increment the length */
|
||||
n++;
|
||||
}
|
||||
|
||||
done:
|
||||
return n;
|
||||
}
|
Reference in New Issue
Block a user