2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2012-08-16 03:47:55 +00:00
|
|
|
* $Id$
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
2013-12-31 10:24:12 +00:00
|
|
|
Copyright 2006-2014 Chung, Hyung-Hwan.
|
2009-09-16 04:01:02 +00:00
|
|
|
This file is part of QSE.
|
2009-01-06 04:40:25 +00:00
|
|
|
|
2009-09-16 04:01:02 +00:00
|
|
|
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.
|
2009-01-06 04:40:25 +00:00
|
|
|
|
2009-09-16 04:01:02 +00:00
|
|
|
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.
|
2009-01-06 04:40:25 +00:00
|
|
|
|
2009-09-16 04:01:02 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with QSE. If not, see <http://www.gnu.org/licenses/>.
|
2007-05-02 01:07:00 +00:00
|
|
|
*/
|
|
|
|
|
2011-10-14 22:57:41 +00:00
|
|
|
#include <qse/cmn/path.h>
|
2007-06-16 23:09:00 +00:00
|
|
|
|
2012-11-09 17:31:33 +00:00
|
|
|
#define IS_MSEP(c) QSE_ISPATHMBSEP(c)
|
|
|
|
#define IS_WSEP(c) QSE_ISPATHWCSEP(c)
|
2011-10-15 23:18:55 +00:00
|
|
|
|
2011-05-04 01:48:42 +00:00
|
|
|
const qse_mchar_t* qse_mbsbasename (const qse_mchar_t* path)
|
|
|
|
{
|
|
|
|
const qse_mchar_t* p, * last = QSE_NULL;
|
|
|
|
|
|
|
|
for (p = path; *p != QSE_MT('\0'); p++)
|
|
|
|
{
|
2012-08-30 16:36:37 +00:00
|
|
|
if (IS_MSEP(*p)) last = p;
|
2011-05-04 01:48:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (last == QSE_NULL)? path: (last + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const qse_wchar_t* qse_wcsbasename (const qse_wchar_t* path)
|
2009-09-05 07:08:19 +00:00
|
|
|
{
|
2011-05-04 01:48:42 +00:00
|
|
|
const qse_wchar_t* p, * last = QSE_NULL;
|
2009-09-05 07:08:19 +00:00
|
|
|
|
2011-05-04 01:48:42 +00:00
|
|
|
for (p = path; *p != QSE_WT('\0'); p++)
|
2009-09-05 07:08:19 +00:00
|
|
|
{
|
2012-08-30 16:36:37 +00:00
|
|
|
if (IS_WSEP(*p)) last = p;
|
2009-09-05 07:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (last == QSE_NULL)? path: (last + 1);
|
|
|
|
}
|