touched up a few string copy functions

This commit is contained in:
hyung-hwan 2011-03-24 09:07:24 +00:00
parent 042493b24d
commit 9255381669
12 changed files with 357 additions and 193 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: str.h 408 2011-03-23 02:45:39Z hyunghwan.chung $ * $Id: str.h 410 2011-03-23 15:07:24Z hyunghwan.chung $
* *
Copyright 2006-2009 Chung, Hyung-Hwan. Copyright 2006-2009 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -167,6 +167,7 @@ qse_size_t qse_strbytes (
const qse_char_t* str const qse_char_t* str
); );
qse_size_t qse_mbscpy ( qse_size_t qse_mbscpy (
qse_mchar_t* buf, qse_mchar_t* buf,
const qse_mchar_t* str const qse_mchar_t* str
@ -177,39 +178,72 @@ qse_size_t qse_wcscpy (
const qse_wchar_t* str const qse_wchar_t* str
); );
#ifdef QSE_CHAR_IS_MCHAR qse_size_t qse_mbsxcpy (
# define qse_strcpy(buf,str) qse_mbscpy(buf,str) qse_mchar_t* buf,
#else qse_size_t bsz,
# define qse_strcpy(buf,str) qse_wcscpy(buf,str) const qse_mchar_t* str
#endif );
qse_size_t qse_strxcpy ( qse_size_t qse_wcsxcpy (
qse_char_t* buf, qse_wchar_t* buf,
qse_size_t bsz, qse_size_t bsz,
const qse_char_t* str const qse_wchar_t* str
); );
/** /**
* The qse_strycpy() function copies a length-bounded string into * The qse_mbsncpy() function copies a length-bounded string into
* a buffer with unknown size. * a buffer with unknown size.
*/ */
qse_size_t qse_strncpy ( qse_size_t qse_mbsncpy (
qse_char_t* buf, /**< buffer with unknown length */ qse_mchar_t* buf, /**< buffer with unknown length */
const qse_char_t* str, /**< length-bounded string */ const qse_mchar_t* str, /**< length-bounded string */
qse_size_t len /**< string length */ qse_size_t len /**< string length */
); );
/** /**
* The qse_strycpy() function copies a length-bounded string into * The qse_wcsncpy() function copies a length-bounded string into
* a buffer with unknown size.
*/
qse_size_t qse_wcsncpy (
qse_wchar_t* buf, /**< buffer with unknown length */
const qse_wchar_t* str, /**< length-bounded string */
qse_size_t len /**< string length */
);
/**
* The qse_mbsxncpy() function copies a length-bounded string into
* a length-bounded buffer. * a length-bounded buffer.
*/ */
qse_size_t qse_strxncpy ( qse_size_t qse_mbsxncpy (
qse_char_t* buf, /**< length-bounded buffer */ qse_mchar_t* buf, /**< length-bounded buffer */
qse_size_t bsz, /**< buffer length */ qse_size_t bsz, /**< buffer length */
const qse_char_t* str, /**< length-bounded string */ const qse_mchar_t* str, /**< length-bounded string */
qse_size_t len /**< string length */ qse_size_t len /**< string length */
); );
/**
* The qse_wcsxncpy() function copies a length-bounded string into
* a length-bounded buffer.
*/
qse_size_t qse_wcsxncpy (
qse_wchar_t* buf, /**< length-bounded buffer */
qse_size_t bsz, /**< buffer length */
const qse_wchar_t* str, /**< length-bounded string */
qse_size_t len /**< string length */
);
#ifdef QSE_CHAR_IS_MCHAR
# define qse_strcpy(buf,str) qse_mbscpy(buf,str)
# define qse_strxcpy(buf,bsz,str) qse_mbsxcpy(buf,bsz,str)
# define qse_strncpy(buf,str,len) qse_mbsncpy(buf,str,len)
# define qse_strxncpy(buf,bsz,str,len) qse_mbsxncpy(buf,bsz,str,len)
#else
# define qse_strcpy(buf,str) qse_wcscpy(buf,str)
# define qse_strxcpy(buf,bsz,str) qse_wcsxcpy(buf,bsz,str)
# define qse_strncpy(buf,str,len) qse_wcsncpy(buf,str,len)
# define qse_strxncpy(buf,bsz,str,len) qse_wcsxncpy(buf,bsz,str,len)
#endif
/** /**
* The qse_strxput() function copies the string @a str into the buffer @a buf * The qse_strxput() function copies the string @a str into the buffer @a buf
* of the size @a bsz. Unlike qse_strxcpy(), it does not null-terminate the * of the size @a bsz. Unlike qse_strxcpy(), it does not null-terminate the

View File

@ -9,7 +9,7 @@ lib_LTLIBRARIES = libqsecmn.la
libqsecmn_la_SOURCES = \ libqsecmn_la_SOURCES = \
syscall.h mem.h \ syscall.h mem.h \
mem.c xma.c fma.c chr.c chr_cnv.c rex.c \ mem.c xma.c fma.c chr.c chr_cnv.c rex.c \
str_bas.c str_cnv.c str_dyn.c str_pbrk.c str_spn.c str_utl.c \ str_bas.c str_cnv.c str_cpy.c str_dyn.c str_pbrk.c str_spn.c str_utl.c \
lda.c oht.c htb.c rbt.c sll.c gdl.c dll.c opt.c \ lda.c oht.c htb.c rbt.c sll.c gdl.c dll.c opt.c \
tio.c tio_get.c tio_put.c \ tio.c tio_get.c tio_put.c \
fio.c pio.c sio.c \ fio.c pio.c sio.c \

View File

@ -265,7 +265,7 @@ lib_LTLIBRARIES = libqsecmn.la $(am__append_1)
libqsecmn_la_SOURCES = \ libqsecmn_la_SOURCES = \
syscall.h mem.h \ syscall.h mem.h \
mem.c xma.c fma.c chr.c chr_cnv.c rex.c \ mem.c xma.c fma.c chr.c chr_cnv.c rex.c \
str_bas.c str_cnv.c str_dyn.c str_pbrk.c str_spn.c str_utl.c \ str_bas.c str_cnv.c str_cpy.c str_dyn.c str_pbrk.c str_spn.c str_utl.c \
lda.c oht.c htb.c rbt.c sll.c gdl.c dll.c opt.c \ lda.c oht.c htb.c rbt.c sll.c gdl.c dll.c opt.c \
tio.c tio_get.c tio_put.c \ tio.c tio_get.c tio_put.c \
fio.c pio.c sio.c \ fio.c pio.c sio.c \

View File

@ -1,5 +1,5 @@
/* /*
* $Id: pio.c 407 2011-03-23 02:21:14Z hyunghwan.chung $ * $Id: pio.c 410 2011-03-23 15:07:24Z hyunghwan.chung $
* *
Copyright 2006-2009 Chung, Hyung-Hwan. Copyright 2006-2009 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -492,9 +492,10 @@ qse_pio_t* qse_pio_init (
* doing better parsing of the command line. * doing better parsing of the command line.
*/ */
/* NOTE: you must separate the command name and the parameters with /* NOTE: you must separate the command name and the parameters
* a space. "pstat.exe /c" is ok while "pstat.exe/c" is not. */ * with a space. "pstat.exe /c" is ok while "pstat.exe/c"
mptr = qse_mbschr (cmd_line, QSE_MT(' ')); * is not. */
mptr = qse_mbspbrk (cmd_line, QSE_MT(" \t"));
if (mptr) *mptr = QSE_MT('\0'); if (mptr) *mptr = QSE_MT('\0');
cmd_line[mn+1] = QSE_MT('\0'); /* the second '\0' at the end */ cmd_line[mn+1] = QSE_MT('\0'); /* the second '\0' at the end */
cmd_file = cmd_line; cmd_file = cmd_line;

View File

@ -1,5 +1,5 @@
/* /*
* $Id: str_bas.c 405 2011-03-21 14:01:10Z hyunghwan.chung $ * $Id: str_bas.c 410 2011-03-23 15:07:24Z hyunghwan.chung $
* *
Copyright 2006-2009 Chung, Hyung-Hwan. Copyright 2006-2009 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -43,85 +43,6 @@ qse_size_t qse_strbytes (const qse_char_t* str)
return (p - str) * QSE_SIZEOF(qse_char_t); return (p - str) * QSE_SIZEOF(qse_char_t);
} }
qse_size_t qse_mbscpy (qse_mchar_t* buf, const qse_mchar_t* str)
{
qse_mchar_t* org = buf;
while ((*buf++ = *str++) != QSE_MT('\0'));
return buf - org - 1;
}
qse_size_t qse_wcscpy (qse_wchar_t* buf, const qse_wchar_t* str)
{
qse_wchar_t* org = buf;
while ((*buf++ = *str++) != QSE_WT('\0'));
return buf - org - 1;
}
qse_size_t qse_strxcpy (
qse_char_t* buf, qse_size_t bsz, const qse_char_t* str)
{
qse_char_t* p, * p2;
p = buf; p2 = buf + bsz - 1;
while (p < p2)
{
if (*str == QSE_T('\0')) break;
*p++ = *str++;
}
if (bsz > 0) *p = QSE_T('\0');
return p - buf;
}
qse_size_t qse_strncpy (
qse_char_t* buf, const qse_char_t* str, qse_size_t len)
{
/*
const qse_char_t* end = str + len;
while (str < end) *buf++ = *str++;
*buf = QSE_T('\0');
return len;
*/
if (len > 0)
{
qse_size_t n = (len-1) >> 3; /* (len-1) / 8 */
switch (len & 7) /* len % 8 */
{
repeat:
case 0: *buf++ = *str++;
case 7: *buf++ = *str++;
case 6: *buf++ = *str++;
case 5: *buf++ = *str++;
case 4: *buf++ = *str++;
case 3: *buf++ = *str++;
case 2: *buf++ = *str++;
case 1: *buf++ = *str++;
if (n <= 0) break;
n--;
goto repeat;
}
}
*buf = QSE_T('\0');
return len;
}
qse_size_t qse_strxncpy (
qse_char_t* buf, qse_size_t bsz, const qse_char_t* str, qse_size_t len)
{
qse_size_t n;
if (bsz <= 0) return 0;
if ((n = bsz - 1) > len) n = len;
QSE_MEMCPY (buf, str, n * QSE_SIZEOF(qse_char_t));
buf[n] = QSE_T('\0');
return n;
}
qse_size_t qse_strxput ( qse_size_t qse_strxput (
qse_char_t* buf, qse_size_t bsz, const qse_char_t* str) qse_char_t* buf, qse_size_t bsz, const qse_char_t* str)
{ {

174
qse/lib/cmn/str_cpy.c Normal file
View File

@ -0,0 +1,174 @@
/*
* $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 "mem.h"
qse_size_t qse_mbscpy (qse_mchar_t* buf, const qse_mchar_t* str)
{
qse_mchar_t* org = buf;
while ((*buf++ = *str++) != QSE_MT('\0'));
return buf - org - 1;
}
qse_size_t qse_wcscpy (qse_wchar_t* buf, const qse_wchar_t* str)
{
qse_wchar_t* org = buf;
while ((*buf++ = *str++) != QSE_WT('\0'));
return buf - org - 1;
}
qse_size_t qse_mcsxcpy (
qse_mchar_t* buf, qse_size_t bsz, const qse_mchar_t* str)
{
qse_mchar_t* p, * p2;
p = buf; p2 = buf + bsz - 1;
while (p < p2)
{
if (*str == QSE_MT('\0')) break;
*p++ = *str++;
}
if (bsz > 0) *p = QSE_MT('\0');
return p - buf;
}
qse_size_t qse_wcsxcpy (
qse_wchar_t* buf, qse_size_t bsz, const qse_wchar_t* str)
{
qse_wchar_t* p, * p2;
p = buf; p2 = buf + bsz - 1;
while (p < p2)
{
if (*str == QSE_WT('\0')) break;
*p++ = *str++;
}
if (bsz > 0) *p = QSE_WT('\0');
return p - buf;
}
qse_size_t qse_mcsncpy (
qse_mchar_t* buf, const qse_mchar_t* str, qse_size_t len)
{
/*
const qse_mchar_t* end = str + len;
while (str < end) *buf++ = *str++;
*buf = QSE_MT('\0');
return len;
*/
if (len > 0)
{
qse_size_t n = (len-1) >> 3; /* (len-1) / 8 */
switch (len & 7) /* len % 8 */
{
repeat:
case 0: *buf++ = *str++;
case 7: *buf++ = *str++;
case 6: *buf++ = *str++;
case 5: *buf++ = *str++;
case 4: *buf++ = *str++;
case 3: *buf++ = *str++;
case 2: *buf++ = *str++;
case 1: *buf++ = *str++;
if (n <= 0) break;
n--;
goto repeat;
}
}
*buf = QSE_MT('\0');
return len;
}
qse_size_t qse_wcsncpy (
qse_wchar_t* buf, const qse_wchar_t* str, qse_size_t len)
{
/*
const qse_wchar_t* end = str + len;
while (str < end) *buf++ = *str++;
*buf = QSE_WT('\0');
return len;
*/
if (len > 0)
{
qse_size_t n = (len-1) >> 3; /* (len-1) / 8 */
switch (len & 7) /* len % 8 */
{
repeat:
case 0: *buf++ = *str++;
case 7: *buf++ = *str++;
case 6: *buf++ = *str++;
case 5: *buf++ = *str++;
case 4: *buf++ = *str++;
case 3: *buf++ = *str++;
case 2: *buf++ = *str++;
case 1: *buf++ = *str++;
if (n <= 0) break;
n--;
goto repeat;
}
}
*buf = QSE_WT('\0');
return len;
}
qse_size_t qse_mcsxncpy (
qse_mchar_t* buf, qse_size_t bsz,
const qse_mchar_t* str, qse_size_t len)
{
qse_size_t n;
if (bsz <= 0) return 0;
if ((n = bsz - 1) > len) n = len;
QSE_MEMCPY (buf, str, n * QSE_SIZEOF(qse_mchar_t));
buf[n] = QSE_MT('\0');
return n;
}
qse_size_t qse_wcsxncpy (
qse_wchar_t* buf, qse_size_t bsz,
const qse_wchar_t* str, qse_size_t len)
{
qse_size_t n;
if (bsz <= 0) return 0;
if ((n = bsz - 1) > len) n = len;
QSE_MEMCPY (buf, str, n * QSE_SIZEOF(qse_wchar_t));
buf[n] = QSE_WT('\0');
return n;
}

View File

@ -19,7 +19,6 @@
*/ */
#include <qse/cmn/str.h> #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) qse_mchar_t* qse_mbspbrk (const qse_mchar_t* str1, const qse_mchar_t* str2)
{ {

View File

@ -19,7 +19,6 @@
*/ */
#include <qse/cmn/str.h> #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) qse_size_t qse_mbsspn (const qse_mchar_t* str1, const qse_mchar_t* str2)
{ {

View File

@ -21,7 +21,7 @@
#include "scm.h" #include "scm.h"
static int eval_entity (qse_scm_t* scm); static int eval_entity (qse_scm_t* scm);
#if 0 #if 0
static int save (qse_scm_t* scm, qse_scm_ent_t* ) static int save (qse_scm_t* scm, qse_scm_ent_t* )
{ {
@ -29,8 +29,8 @@ static int save (qse_scm_t* scm, qse_scm_ent_t* )
static int leave (qse_scm_t* scm) static int leave (qse_scm_t* scm)
{ {
} }
#endif #endif
int qse_scm_dolambda (qse_scm_t* scm) int qse_scm_dolambda (qse_scm_t* scm)
{ {

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
37 38
11 11
MItem MItem
3 3
@ -512,7 +512,7 @@ WVList
115 115
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dyn.c ..\..\..\..\..\lib\cmn\str_cpy.c
116 116
WString WString
4 4
@ -529,8 +529,8 @@ WVList
0 0
119 119
MItem MItem
33 32
..\..\..\..\..\lib\cmn\str_pbrk.c ..\..\..\..\..\lib\cmn\str_dyn.c
120 120
WString WString
4 4
@ -547,8 +547,8 @@ WVList
0 0
123 123
MItem MItem
32 33
..\..\..\..\..\lib\cmn\str_spn.c ..\..\..\..\..\lib\cmn\str_pbrk.c
124 124
WString WString
4 4
@ -566,7 +566,7 @@ WVList
127 127
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_utl.c ..\..\..\..\..\lib\cmn\str_spn.c
128 128
WString WString
4 4
@ -583,8 +583,8 @@ WVList
0 0
131 131
MItem MItem
29 32
..\..\..\..\..\lib\cmn\time.c ..\..\..\..\..\lib\cmn\str_utl.c
132 132
WString WString
4 4
@ -601,8 +601,8 @@ WVList
0 0
135 135
MItem MItem
28 29
..\..\..\..\..\lib\cmn\tio.c ..\..\..\..\..\lib\cmn\time.c
136 136
WString WString
4 4
@ -619,8 +619,8 @@ WVList
0 0
139 139
MItem MItem
32 28
..\..\..\..\..\lib\cmn\tio_get.c ..\..\..\..\..\lib\cmn\tio.c
140 140
WString WString
4 4
@ -638,7 +638,7 @@ WVList
143 143
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ..\..\..\..\..\lib\cmn\tio_get.c
144 144
WString WString
4 4
@ -655,8 +655,8 @@ WVList
0 0
147 147
MItem MItem
28 32
..\..\..\..\..\lib\cmn\xma.c ..\..\..\..\..\lib\cmn\tio_put.c
148 148
WString WString
4 4
@ -673,26 +673,26 @@ WVList
0 0
151 151
MItem MItem
3 28
*.h ..\..\..\..\..\lib\cmn\xma.c
152 152
WString WString
3 4
NIL COBJ
153 153
WVList WVList
0 0
154 154
WVList WVList
0 0
-1 11
1 1
1 1
0 0
155 155
MItem MItem
28 3
..\..\..\..\..\lib\cmn\mem.h *.h
156 156
WString WString
3 3
@ -703,14 +703,14 @@ WVList
158 158
WVList WVList
0 0
151 -1
1 1
1 1
0 0
159 159
MItem MItem
32 28
..\..\..\..\..\lib\cmn\syscall.h ..\..\..\..\..\lib\cmn\mem.h
160 160
WString WString
3 3
@ -721,7 +721,25 @@ WVList
162 162
WVList WVList
0 0
151 155
1
1
0
163
MItem
32
..\..\..\..\..\lib\cmn\syscall.h
164
WString
3
NIL
165
WVList
0
166
WVList
0
155
1 1
1 1
0 0

View File

@ -56,8 +56,8 @@ WVList
VComponent VComponent
15 15
WRect WRect
0 180
0 1680
5700 5700
4240 4240
1 1
@ -66,7 +66,7 @@ WRect
WFileName WFileName
30 30
release/os2/lib/cmn/qsecmn.tgt release/os2/lib/cmn/qsecmn.tgt
25 24
25 25
17 17
VComponent VComponent
@ -124,14 +124,14 @@ WRect
320 320
5700 5700
4240 4240
1 0
0 0
28 28
WFileName WFileName
28 28
debug/os2/lib/cmn/qsecmn.tgt debug/os2/lib/cmn/qsecmn.tgt
19 19
26 22
29 29
VComponent VComponent
30 30
@ -140,7 +140,7 @@ WRect
1800 1800
5700 5700
4240 4240
0 1
0 0
31 31
WFileName WFileName
@ -180,4 +180,4 @@ WFileName
debug/os2/cmd/scm/qsescm.tgt debug/os2/cmd/scm/qsescm.tgt
0 0
1 1
32 35

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
37 38
11 11
MItem MItem
3 3
@ -576,7 +576,7 @@ WVList
131 131
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dyn.c ..\..\..\..\..\lib\cmn\str_cpy.c
132 132
WString WString
4 4
@ -593,8 +593,8 @@ WVList
0 0
135 135
MItem MItem
33 32
..\..\..\..\..\lib\cmn\str_pbrk.c ..\..\..\..\..\lib\cmn\str_dyn.c
136 136
WString WString
4 4
@ -611,8 +611,8 @@ WVList
0 0
139 139
MItem MItem
32 33
..\..\..\..\..\lib\cmn\str_spn.c ..\..\..\..\..\lib\cmn\str_pbrk.c
140 140
WString WString
4 4
@ -630,47 +630,47 @@ WVList
143 143
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_utl.c ..\..\..\..\..\lib\cmn\str_spn.c
144 144
WString WString
4 4
COBJ COBJ
145 145
WVList WVList
1
146
MVState
147
WString
3
WCC
148
WString
25
o?2??Include directories:
1
149
WString
54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include"
0 0
150 146
WVList WVList
0 0
11 11
1 1
1 1
0 0
151 147
MItem MItem
29 32
..\..\..\..\..\lib\cmn\time.c ..\..\..\..\..\lib\cmn\str_utl.c
152 148
WString WString
4 4
COBJ COBJ
153 149
WVList WVList
1
150
MVState
151
WString
3
WCC
152
WString
25
o?2??Include directories:
1
153
WString
54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include"
0 0
154 154
WVList WVList
@ -681,8 +681,8 @@ WVList
0 0
155 155
MItem MItem
28 29
..\..\..\..\..\lib\cmn\tio.c ..\..\..\..\..\lib\cmn\time.c
156 156
WString WString
4 4
@ -699,8 +699,8 @@ WVList
0 0
159 159
MItem MItem
32 28
..\..\..\..\..\lib\cmn\tio_get.c ..\..\..\..\..\lib\cmn\tio.c
160 160
WString WString
4 4
@ -718,7 +718,7 @@ WVList
163 163
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ..\..\..\..\..\lib\cmn\tio_get.c
164 164
WString WString
4 4
@ -735,8 +735,8 @@ WVList
0 0
167 167
MItem MItem
28 32
..\..\..\..\..\lib\cmn\xma.c ..\..\..\..\..\lib\cmn\tio_put.c
168 168
WString WString
4 4
@ -753,26 +753,26 @@ WVList
0 0
171 171
MItem MItem
3 28
*.h ..\..\..\..\..\lib\cmn\xma.c
172 172
WString WString
3 4
NIL COBJ
173 173
WVList WVList
0 0
174 174
WVList WVList
0 0
-1 11
1 1
1 1
0 0
175 175
MItem MItem
28 3
..\..\..\..\..\lib\cmn\mem.h *.h
176 176
WString WString
3 3
@ -783,14 +783,14 @@ WVList
178 178
WVList WVList
0 0
171 -1
1 1
1 1
0 0
179 179
MItem MItem
32 28
..\..\..\..\..\lib\cmn\syscall.h ..\..\..\..\..\lib\cmn\mem.h
180 180
WString WString
3 3
@ -801,7 +801,25 @@ WVList
182 182
WVList WVList
0 0
171 175
1
1
0
183
MItem
32
..\..\..\..\..\lib\cmn\syscall.h
184
WString
3
NIL
185
WVList
0
186
WVList
0
175
1 1
1 1
0 0