Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 702 → Rev 703

/programs/develop/open watcom/trunk/clib/crt/chk8087.c
180,165 → 180,12
}
#endif
 
#if defined( __OS2__ )
 
void __chk8087( void )
/********************/
{
char devinfo;
 
#if defined( __386__ )
DosDevConfig( &devinfo, DEVINFO_COPROCESSOR );
if( devinfo == 0 ) {
_RWD_real87 = 0;
} else {
_RWD_real87 = __x87id();
}
_RWD_8087 = _RWD_real87;
#else
if( _RWD_8087 == 0 ) {
DosDevConfig( &devinfo, 3, 0 );
if( devinfo == 0 ) {
_RWD_real87 = 0;
} else {
_RWD_real87 = __x87id();
}
_RWD_8087 = _RWD_real87;
}
if( _RWD_real87 ) {
__GrabFP87();
}
if( _RWD_8087 ) {
_RWD_FPE_handler = __default_sigfpe_handler;
}
#endif
_fpreset();
}
 
#elif defined( __QNX__ )
 
void __chk8087( void )
/********************/
{
extern char __87;
extern char __r87;
 
_RWD_real87 = __r87;
_RWD_8087 = __87;
_fpreset();
}
 
#elif defined( __LINUX__ )
 
void __chk8087( void )
/********************/
{
// TODO: We really need to call Linux and determine if the machine
// has a real FPU or not, so we can properly work with an FPU
// emulator.
_RWD_real87 = __x87id();
_RWD_8087 = _RWD_real87;
_fpreset();
}
 
#elif defined( __NETWARE__ )
 
extern short __87present( void );
#pragma aux __87present = \
"smsw ax ", \
"test ax, 4 ", \
"jne no_emu ", \
"xor ax, ax ", \
"no_emu: ", \
"mov ax, 1 " \
value [ ax ];
 
extern void __chk8087( void )
/*****************************/
{
if( _RWD_8087 == 0 ) {
if( __87present() ) {
_RWD_8087 = 3; /* 387 */
_RWD_real87 = 3;
}
__init_80x87();
}
}
 
#elif defined( __NT__ )
 
void __chk8087( void )
/********************/
{
_RWD_real87 = __x87id();
_RWD_8087 = _RWD_real87;
__init_8087();
}
 
#elif defined( __DOS__ )
 
void __chk8087( void )
/********************/
{
if( _RWD_8087 != 0 ) { /* if we already know we have an 80x87 */
#if !defined( __386__ )
if( __dos87real )
__GrabFP87();
#endif
_RWD_FPE_handler = __default_sigfpe_handler;
return; /* this prevents real87 from being set */
} /* when we have an emulator */
_RWD_real87 = __x87id(); /* if a coprocessor is present then we */
_RWD_8087 = _RWD_real87; /* initialize even when NO87 is defined */
#if !defined( __386__ )
__dos87real = _RWD_real87;
#endif
__init_8087(); /* this handles the fpi87 and NO87 case */
if( _RWD_no87 != 0 ) { /* if NO87 environment var is defined */
_RWD_8087 = 0; /* then we want to pretend that the */
_RWD_real87 = 0; /* coprocessor doesn't exist */
}
if( _RWD_real87 ) {
__GrabFP87();
}
if( _RWD_8087 ) {
_RWD_FPE_handler = __default_sigfpe_handler;
}
}
 
#elif defined( __WINDOWS__ )
 
void __chk8087( void )
/********************/
{
if( _RWD_8087 != 0 ) /* if we already know we have an 80x87 */
return; /* this prevents real87 from being set */
/* when we have an emulator */
if( GetWinFlags() & WF_80x87 ) { /* if a coprocessor is present then we */
#if defined( __386__ )
extern void pascal _FloatingPoint( void );
_FloatingPoint();
#endif
_RWD_real87 = __x87id(); /* initialize even when NO87 is defined */
_RWD_8087 = _RWD_real87; /* this handles the fpi87 and NO87 case */
__init_8087();
} else {
#if defined( __386__ )
// check to see if emulator is loaded
union REGS regs;
regs.w.ax = 0xfa00;
int86( 0x2f, &regs, &regs );
if( regs.w.ax == 0x0666 ) { /* check for emulator present */
_RWD_real87 = __x87id(); /* initialize even when NO87 is defined */
_RWD_8087 = _RWD_real87; /* this handles the fpi87 and NO87 case */
__init_8087();
}
#endif
}
if( _RWD_no87 != 0 ) { /* if NO87 environment var is defined */
_RWD_8087 = 0; /* then we want to pretend that the */
_RWD_real87 = 0; /* coprocessor doesn't exist */
}
}
 
#endif
/programs/develop/open watcom/trunk/clib/fpu/fpe387.asm
0,0 → 1,102
;*****************************************************************************
;*
;* Open Watcom Project
;*
;* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
;*
;* ========================================================================
;*
;* This file contains Original Code and/or Modifications of Original
;* Code as defined in and that are subject to the Sybase Open Watcom
;* Public License version 1.0 (the 'License'). You may not use this file
;* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
;* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
;* provided with the Original Code and Modifications, and is also
;* available at www.sybase.com/developer/opensource.
;*
;* The Original Code and all software distributed under the License are
;* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
;* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
;* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
;* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
;* NON-INFRINGEMENT. Please see the License for the specific language
;* governing rights and limitations under the License.
;*
;* ========================================================================
;*
;* Description: Connect/disconnect 80x87 interrupt handler.
;*
;*****************************************************************************
 
 
.8087
.386p
 
include struct.inc
include mdef.inc
 
xref __FPE2Handler_
modstart fpe387
 
datasegment
Save87 dd 0
enddata
 
xdefp "C",__Init_FPE_handler
defp __Init_FPE_handler
_guess ; guess initialization required
cmp dword ptr Save87,0 ; - quit if already initialized
_quif ne ; - ...
_admit ; admit: already initialized
ret ; - return
_endguess ; endguess
push EAX ; save registers
push EBX ; ...
push ECX ; ...
mov EAX, 68
mov EBX, 15
lea ECX, __FPE2Handler_
int 40h ; set new #FPE handler
mov Save87, EAX ; save old handler
pop ECX ; ...
pop EBX ; ...
pop EAX ; ...
ret ; return
endproc __Init_FPE_handler
 
 
xdefp "C",__Fini_FPE_handler
defp __Fini_FPE_handler
cmp dword ptr Save87,0 ; if not initialized
_if e ; - then
ret ; - return
_endif ; endif
push EAX ; save registers
push EBX ; ...
push EDX ; ...
sub ESP,4 ; allocate space for control word
fstcw word ptr [ESP] ; get control word
fwait ; ...
mov byte ptr [ESP],7Fh ; disable exception interrupts
fldcw word ptr [ESP] ; ...
fwait ; ...
add ESP,4 ; remove temporary
mov EAX, 68
mov EBX, 15
mov ECX, dword ptr Save87
int 40h ; set new #FPE handler
pop EDX ; ...
pop EBX ; ...
pop EAX ; ...
ret
endproc __Fini_FPE_handler
 
endmod
end
/programs/develop/open watcom/trunk/clib/fpu/fpeinth.asm
40,9 → 40,6
include env387.inc
include fstatus.inc
 
ifndef __NETWARE__
xref __GETDS
endif
xref __8087 ; indicate that NDP instructions are present
 
modstart fpeinth
55,28 → 52,16
TInf db 00h,00h,00h,00h,00h,00h,00h,80h,0ffh,7fh
F8Inf db 0ffh,0ffh,0ffh,0ffh,0ffh,0ffh,0efh,7fh
F4Inf db 0ffh,0ffh,7fh,7fh
db 512 dup(0)
FPEStk label byte
SaveSS dw 0
SaveESP dd 0
enddata
 
; User handler for 80x87 exceptions.
 
; Interrupt handler for 80x87 exceptions.
 
xdefp __FPEHandler_
defp __FPEHandler_
public "C",__FPEHandlerStart_
__FPEHandlerStart_ label byte
push EAX ; save reg
mov AL,20h ; issue EOI to 8259 controller
out 20h,AL ; ...
out 0a0h,AL ; issue EOI to slave 8259
xor AX,AX ; clear busy signal
out 0f0h,AL ; ...
pop EAX ; restore regs
 
public __FPE2Handler_
__FPE2Handler_ label byte
 
push EAX ; save regs
push EBX ; ...
push ECX ; ...
84,34 → 69,22
push ESI ; ...
push EDI ; ...
push EBP ; ...
push DS ; ...
push ES ; ...
sub ESP,ENV_SIZE ; make room for environment information
mov EBP,ESP ; point to buffer for 80x87 environment
fnstenv [EBP] ; get 80x87 environment
fwait ; wait for 80x87
fdisi ; disable interrupts
sti ; enable CPU interrupts
ifndef __NETWARE__
; call __GETDS ; load DS
endif
ifdef __NETWARE__
; push SS ; load DS
; pop DS ; ...
endif
mov EDX,ENV_CW[EBP] ; get control word
not EDX ; flip the mask bits
mov DH,0FFh ; turn on top byte
and EDX,ENV_SW[EBP] ; get status word
; mov ES,ENV_IP+4[EBP] ; get intruction address
mov EDI,ENV_IP[EBP] ; ...
opcode: mov BX,[EDI] ; get opcode
opcode:
mov BX,[EDI] ; get opcode
inc EDI ; point to next opcode
cmp BL,0d8h ; check if its the opcode
jb opcode ; ...
cmp BL,0dfh ; ...
ja opcode ; ...
; mov ES,ENV_OP+4[EBP] ; get pointer to operand
mov EDI,ENV_OP[EBP] ; ...
xchg BL,BH ; get opcode in right position
mov CL,FPE_OK ; assume exception to be ignored
154,22 → 127,8
_guess ; guess exception to be handled
cmp CL,FPE_OK ; - check if exception allowed
_quif e ; - quit if exception not allowed
; cmp SaveSS,0 ; - check if already in handler
; _quif ne ; - quit if already in handler
push _STACKLOW ; - save old stack low
mov SaveSS,SS ; - save current stack pointer
mov SaveESP,ESP ; - ...
push DS ; - get new stack pointer
pop SS ; - ...
lea ESP,FPEStk ; - ...
lea EAX,FPEStk-512 ; - set stack low variable
mov _STACKLOW,EAX ; - set stack low variable
movzx EAX,CL ; - set floating point status
call __FPE_exception_ ; - call user's handler
mov SS,SaveSS ; - restore stack pointer
mov ESP,SaveESP ; - ...
pop _STACKLOW ; - restore old stacklow
mov SaveSS,0 ; - indicate handler can be re-entered
_endguess ; endguess
fclex ; clear exceptions that may have
; occurred as a result of handling the
178,8 → 137,6
fldcw word ptr ENV_CW[EBP] ; enable interrupts
fwait ; ...
add ESP,ENV_SIZE ; clean up stack
pop ES ; restore registers
pop DS ; ...
pop EBP ; ...
pop EDI ; ...
pop ESI ; ...
187,12 → 144,10
pop ECX ; ...
pop EBX ; ...
pop EAX ; ...
iretd ; return from interrupt handler
public "C",__FPEHandlerEnd_
__FPEHandlerEnd_ label byte
ret ; return from interrupt handler
 
endproc __FPEHandler_
 
 
; Process invalid operation.
 
InvalidOp proc near
363,9 → 318,9
Store proc near
test BH,04h
_if ne ; if double
fst qword ptr ES:[EDI] ; - store as double precision result
fst qword ptr [EDI] ; - store as double precision result
_else ; else
fst dword ptr ES:[EDI] ; - store as single precision result
fst dword ptr [EDI] ; - store as single precision result
_endif ; endif
ret ; return
endproc Store
/programs/develop/open watcom/trunk/clib/h/sigfunc.h
0,0 → 1,43
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: typedef for external signal routines and
* prototypes for other signal internal function
*
****************************************************************************/
 
#include "extfunc.h"
 
typedef void (*__sigfpe_func)( int, int );
#ifdef _M_IX86
#pragma aux (__outside_CLIB) __sig_func;
#pragma aux (__outside_CLIB) __sigfpe_func;
#endif
 
_WCRTLINK extern void __sigfpe_handler( int );
extern void __sigabort( void );
extern void __restore_FPE_handler( void );
extern void __grab_FPE_handler( void );
/programs/develop/open watcom/trunk/clib/h/sigtab.h
0,0 → 1,33
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
 
#define __SIGNALTABLE SignalTable
 
/programs/develop/open watcom/trunk/clib/intel/grabfp87.c
36,24 → 36,11
 
extern void __Init_FPE_handler();
extern void __Fini_FPE_handler();
#ifdef __DOS_386__
extern int __FPEHandlerStart_;
extern int __FPEHandlerEnd_;
extern int __DPMI_hosted(void);
#endif
 
void __GrabFP87( void )
{
#ifndef __WINDOWS__
if( _RWD_FPE_handler_exit != __Fini_FPE_handler ) {
#ifdef __DOS_386__
if( !_IsPharLap() && ( __DPMI_hosted() == 1 )) {
DPMILockLinearRegion((long)&__FPEHandlerStart_,
((long)&__FPEHandlerEnd_ - (long)&__FPEHandlerStart_));
}
#endif
__Init_FPE_handler();
_RWD_FPE_handler_exit = __Fini_FPE_handler;
}
#endif
}
/programs/develop/open watcom/trunk/clib/process/signl.c
0,0 → 1,187
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: signal handling ( for DOS, Windows 3.x and ? Netware )
*
****************************************************************************/
 
 
#include "variety.h"
#include <stdio.h>
#include <signal.h>
//#include <dos.h>
#include <errno.h>
#include <float.h>
#include "rtdata.h"
#include "sigtab.h"
#include "sigfunc.h"
#include "seterrno.h"
 
#ifndef __WINDOWS_386__
#ifndef __NETWARE__
//extern void __grab_int23( void );
//extern void __restore_int23( void );
//extern void __grab_int_ctrl_break( void );
//extern void __restore_int_ctrl_break( void );
#endif
#endif
 
#define __SIGLAST SIGIOVFL
 
static __sig_func SignalTable[] = {
SIG_IGN, /* unused */
SIG_DFL, /* SIGABRT */
SIG_DFL, /* SIGFPE */
SIG_DFL, /* SIGILL */
SIG_DFL, /* SIGINT */
SIG_DFL, /* SIGSEGV */
SIG_DFL, /* SIGTERM */
SIG_DFL, /* SIGBREAK */
SIG_IGN, /* SIGUSR1 */
SIG_IGN, /* SIGUSR2 */
SIG_IGN, /* SIGUSR3 */
SIG_DFL, /* SIGIDIVZ */
SIG_DFL /* SIGIOVFL */
};
 
static FPEhandler *__old_FPE_handler = NULL;
 
void __sigabort( void )
{
raise( SIGABRT );
}
 
//extern void _fpmath( void );
//#pragma aux _fpmath "__fpmath";
 
_WCRTLINK void __sigfpe_handler( int fpe_type )
{
__sig_func func;
func = SignalTable[ SIGFPE ];
if( func != SIG_IGN && func != SIG_DFL && func != SIG_ERR ) {
SignalTable[ SIGFPE ] = SIG_DFL; /* 09-nov-87 FWC */
(*(__sigfpe_func)func)( SIGFPE, fpe_type ); /* so we can pass 2'nd parm */
}
}
 
_WCRTLINK __sig_func signal( int sig, __sig_func func )
{
__sig_func prev_func;
if(( sig < 1 ) || ( sig > __SIGLAST )) {
__set_errno( EINVAL );
return( SIG_ERR );
}
_RWD_abort = __sigabort; /* change the abort rtn address */
if( sig == SIGINT ) {
if( func == SIG_DFL ) {
// __restore_int23();
} else if( func != SIG_ERR ) {
// __grab_int23();
}
} else if( sig == SIGBREAK ) {
if( func == SIG_DFL ) {
// __restore_int_ctrl_break();
} else if( func != SIG_ERR ) {
// __grab_int_ctrl_break();
}
} else if( sig == SIGFPE ) {
if( func == SIG_DFL ) {
__restore_FPE_handler();
} else if( func != SIG_ERR ) {
__grab_FPE_handler();
}
}
prev_func = _RWD_sigtab[ sig ];
_RWD_sigtab[ sig ] = func;
return( prev_func );
}
 
 
_WCRTLINK int raise( int sig )
{
__sig_func func;
func = _RWD_sigtab[ sig ];
switch( sig ) {
case SIGFPE:
__sigfpe_handler( FPE_EXPLICITGEN );
break;
case SIGABRT:
if( func == SIG_DFL ) {
__terminate();
}
case SIGINT:
if( func != SIG_IGN && func != SIG_DFL && func != SIG_ERR ) {
_RWD_sigtab[ sig ] = SIG_DFL; /* 09-nov-87 FWC */
// __restore_int23();
(*func)( sig );
}
break;
case SIGBREAK:
if( func != SIG_IGN && func != SIG_DFL && func != SIG_ERR ) {
_RWD_sigtab[ sig ] = SIG_DFL; /* 09-nov-87 FWC */
// __restore_int_ctrl_break();
(*func)( sig );
}
break;
case SIGILL:
case SIGSEGV:
case SIGTERM:
case SIGUSR1:
case SIGUSR2:
case SIGUSR3:
case SIGIDIVZ:
case SIGIOVFL:
if( func != SIG_IGN && func != SIG_DFL && func != SIG_ERR ) {
_RWD_sigtab[ sig ] = SIG_DFL; /* 09-nov-87 FWC */
(*func)( sig );
}
break;
default:
return( -1 );
}
return( 0 );
}
 
void __restore_FPE_handler( void )
{
if( __old_FPE_handler == NULL ) {
return;
}
__FPE_handler = __old_FPE_handler;
__old_FPE_handler = NULL;
}
 
void __grab_FPE_handler( void )
{
if( __old_FPE_handler == NULL ) {
__old_FPE_handler = __FPE_handler;
__FPE_handler = __sigfpe_handler;
}
}
/programs/develop/open watcom/trunk/clib.wpj
4,10 → 4,10
VpeMain
1
WRect
-32
330
10304
9950
 
370
10240
9870
2
MProject
3
42,8 → 42,8
WFileName
10
clib_r.tgt
 
 
10
42
11
VComponent
12
59,5 → 59,5
7
crt.tgt
 
 
11
17
8
/programs/develop/open watcom/trunk/clib_r.tgt
58,7 → 58,7
 
14
WPickList
330
332
15
MItem
5
887,8 → 887,8
 
201
MItem
20
CLIB\FPU\fpeinth.asm
19
CLIB\FPU\fpe387.asm
202
WString
6
905,8 → 905,8
 
205
MItem
21
CLIB\FPU\ini87386.asm
20
CLIB\FPU\fpeinth.asm
206
WString
6
923,8 → 923,8
 
209
MItem
22
CLIB\INTEL\chipvar.asm
21
CLIB\FPU\ini87386.asm
210
WString
6
941,8 → 941,8
 
213
MItem
23
CLIB\INTEL\i64ts386.asm
22
CLIB\INTEL\chipvar.asm
214
WString
6
959,8 → 959,8
 
217
MItem
22
CLIB\STRING\cmp386.asm
23
CLIB\INTEL\i64ts386.asm
218
WString
6
977,264 → 977,264
 
221
MItem
22
CLIB\STRING\cmp386.asm
222
WString
6
ASMOBJ
223
WVList
 
224
WVList
 
15
1
1
 
225
MItem
3
*.c
222
226
WString
4
COBJ
223
227
WVList
18
224
228
MVState
225
229
WString
3
WCC
226
230
WString
25
n????Include directories:
1
227
231
WString
80
$(%watcom)\h;$(%watcom)\h\nt; "E:\Kos\programs\develop\open watcom\trunk\clib\h"
 
228
232
MRState
229
233
WString
3
WCC
230
234
WString
27
?????Default byte alignment
1
 
231
235
MRState
232
236
WString
3
WCC
233
237
WString
21
?????1 byte alignment
1
1
234
238
MRState
235
239
WString
3
WCC
236
240
WString
21
?????No optimizations
1
 
237
241
MRState
238
242
WString
3
WCC
239
243
WString
24
?????Space optimizations
1
1
240
244
MCState
241
245
WString
3
WCC
242
246
WString
33
?????Disable stack depth checking
1
1
243
247
MCState
244
248
WString
3
WCC
245
249
WString
30
?????Call/return optimizations
1
1
246
250
MCState
247
251
WString
3
WCC
248
252
WString
25
?????Relax alias checking
1
1
249
253
MCState
250
254
WString
3
WCC
251
255
WString
27
?????Instruction scheduling
1
1
252
256
MRState
253
257
WString
3
WCC
254
258
WString
29
?????No debugging information
1
1
255
259
MRState
256
260
WString
3
WCC
257
261
WString
24
?????Full debugging info
1
 
258
262
MRState
259
263
WString
3
WCC
260
264
WString
21
?????Compiler default
1
 
261
265
MRState
262
266
WString
3
WCC
263
267
WString
21
?????Compiler default
1
 
264
268
MRState
265
269
WString
3
WCC
266
270
WString
33
?????In-line Pentium instructions
1
1
267
271
MRState
268
272
WString
3
WCC
269
273
WString
21
?????Compiler default
1
 
270
274
MRState
271
275
WString
3
WCC
272
276
WString
29
?????In-line with coprocessor
1
1
273
277
MRState
274
278
WString
3
WCC
275
279
WString
21
??2??32bit Flat model
1
 
276
280
MRState
277
281
WString
3
WCC
278
282
WString
22
??2??32bit Small model
1
1
279
283
WVList
 
-1
1
1
 
280
 
284
MItem
20
CLIB\CHAR\chartest.c
281
WString
4
COBJ
282
WVList
 
283
WVList
 
221
1
1
 
284
MItem
19
CLIB\CHAR\isalnum.c
285
WString
4
1245,7 → 1245,7
287
WVList
 
221
225
1
1
 
1252,7 → 1252,7
288
MItem
19
CLIB\CHAR\isalpha.c
CLIB\CHAR\isalnum.c
289
WString
4
1263,7 → 1263,7
291
WVList
 
221
225
1
1
 
1270,7 → 1270,7
292
MItem
19
CLIB\CHAR\isascii.c
CLIB\CHAR\isalpha.c
293
WString
4
1281,7 → 1281,7
295
WVList
 
221
225
1
1
 
1288,7 → 1288,7
296
MItem
19
CLIB\CHAR\isblank.c
CLIB\CHAR\isascii.c
297
WString
4
1299,7 → 1299,7
299
WVList
 
221
225
1
1
 
1306,7 → 1306,7
300
MItem
19
CLIB\CHAR\iscntrl.c
CLIB\CHAR\isblank.c
301
WString
4
1317,14 → 1317,14
303
WVList
 
221
225
1
1
 
304
MItem
18
CLIB\CHAR\iscsym.c
19
CLIB\CHAR\iscntrl.c
305
WString
4
1335,14 → 1335,14
307
WVList
 
221
225
1
1
 
308
MItem
19
CLIB\CHAR\iscsymf.c
18
CLIB\CHAR\iscsym.c
309
WString
4
1353,7 → 1353,7
311
WVList
 
221
225
1
1
 
1360,7 → 1360,7
312
MItem
19
CLIB\CHAR\isdigit.c
CLIB\CHAR\iscsymf.c
313
WString
4
1371,7 → 1371,7
315
WVList
 
221
225
1
1
 
1378,7 → 1378,7
316
MItem
19
CLIB\CHAR\isgraph.c
CLIB\CHAR\isdigit.c
317
WString
4
1389,7 → 1389,7
319
WVList
 
221
225
1
1
 
1396,7 → 1396,7
320
MItem
19
CLIB\CHAR\islower.c
CLIB\CHAR\isgraph.c
321
WString
4
1407,7 → 1407,7
323
WVList
 
221
225
1
1
 
1414,7 → 1414,7
324
MItem
19
CLIB\CHAR\isprint.c
CLIB\CHAR\islower.c
325
WString
4
1425,7 → 1425,7
327
WVList
 
221
225
1
1
 
1432,7 → 1432,7
328
MItem
19
CLIB\CHAR\ispunct.c
CLIB\CHAR\isprint.c
329
WString
4
1443,7 → 1443,7
331
WVList
 
221
225
1
1
 
1450,7 → 1450,7
332
MItem
19
CLIB\CHAR\isspace.c
CLIB\CHAR\ispunct.c
333
WString
4
1461,7 → 1461,7
335
WVList
 
221
225
1
1
 
1468,7 → 1468,7
336
MItem
19
CLIB\CHAR\istable.c
CLIB\CHAR\isspace.c
337
WString
4
1479,7 → 1479,7
339
WVList
 
221
225
1
1
 
1486,7 → 1486,7
340
MItem
19
CLIB\CHAR\isupper.c
CLIB\CHAR\istable.c
341
WString
4
1497,14 → 1497,14
343
WVList
 
221
225
1
1
 
344
MItem
20
CLIB\CHAR\iswctype.c
19
CLIB\CHAR\isupper.c
345
WString
4
1515,7 → 1515,7
347
WVList
 
221
225
1
1
 
1522,7 → 1522,7
348
MItem
20
CLIB\CHAR\isxdigit.c
CLIB\CHAR\iswctype.c
349
WString
4
1533,14 → 1533,14
351
WVList
 
221
225
1
1
 
352
MItem
19
CLIB\CHAR\tolower.c
20
CLIB\CHAR\isxdigit.c
353
WString
4
1551,7 → 1551,7
355
WVList
 
221
225
1
1
 
1558,7 → 1558,7
356
MItem
19
CLIB\CHAR\toupper.c
CLIB\CHAR\tolower.c
357
WString
4
1569,14 → 1569,14
359
WVList
 
221
225
1
1
 
360
MItem
20
CLIB\CHAR\towctrns.c
19
CLIB\CHAR\toupper.c
361
WString
4
1587,14 → 1587,14
363
WVList
 
221
225
1
1
 
364
MItem
23
CLIB\CONVERT\alphabet.c
20
CLIB\CHAR\towctrns.c
365
WString
4
1605,14 → 1605,14
367
WVList
 
221
225
1
1
 
368
MItem
19
CLIB\CONVERT\atoi.c
23
CLIB\CONVERT\alphabet.c
369
WString
4
1623,7 → 1623,7
371
WVList
 
221
225
1
1
 
1630,7 → 1630,7
372
MItem
19
CLIB\CONVERT\atol.c
CLIB\CONVERT\atoi.c
373
WString
4
1641,14 → 1641,14
375
WVList
 
221
225
1
1
 
376
MItem
20
CLIB\CONVERT\atoll.c
19
CLIB\CONVERT\atol.c
377
WString
4
1659,14 → 1659,14
379
WVList
 
221
225
1
1
 
380
MItem
19
CLIB\CONVERT\itoa.c
20
CLIB\CONVERT\atoll.c
381
WString
4
1677,14 → 1677,14
383
WVList
 
221
225
1
1
 
384
MItem
20
CLIB\CONVERT\lltoa.c
19
CLIB\CONVERT\itoa.c
385
WString
4
1695,14 → 1695,14
387
WVList
 
221
225
1
1
 
388
MItem
19
CLIB\CONVERT\ltoa.c
20
CLIB\CONVERT\lltoa.c
389
WString
4
1713,14 → 1713,14
391
WVList
 
221
225
1
1
 
392
MItem
21
CLIB\CONVERT\strtol.c
19
CLIB\CONVERT\ltoa.c
393
WString
4
1731,14 → 1731,14
395
WVList
 
221
225
1
1
 
396
MItem
22
CLIB\CONVERT\strtoll.c
21
CLIB\CONVERT\strtol.c
397
WString
4
1749,7 → 1749,7
399
WVList
 
221
225
1
1
 
1756,7 → 1756,7
400
MItem
22
CLIB\DIRECT\gtcwdwnt.c
CLIB\CONVERT\strtoll.c
401
WString
4
1767,14 → 1767,14
403
WVList
 
221
225
1
1
 
404
MItem
23
CLIB\ENVIRON\clearenv.c
22
CLIB\DIRECT\gtcwdwnt.c
405
WString
4
1785,14 → 1785,14
407
WVList
 
221
225
1
1
 
408
MItem
22
CLIB\ENVIRON\environ.c
23
CLIB\ENVIRON\clearenv.c
409
WString
4
1803,14 → 1803,14
411
WVList
 
221
225
1
1
 
412
MItem
21
CLIB\ENVIRON\getenv.c
22
CLIB\ENVIRON\environ.c
413
WString
4
1821,14 → 1821,14
415
WVList
 
221
225
1
1
 
416
MItem
20
CLIB\ENVIRON\gtcmd.c
21
CLIB\ENVIRON\getenv.c
417
WString
4
1839,14 → 1839,14
419
WVList
 
221
225
1
1
 
420
MItem
23
CLIB\ENVIRON\isattwnt.c
20
CLIB\ENVIRON\gtcmd.c
421
WString
4
1857,7 → 1857,7
423
WVList
 
221
225
1
1
 
1864,7 → 1864,7
424
MItem
23
CLIB\ENVIRON\searchen.c
CLIB\ENVIRON\isattwnt.c
425
WString
4
1875,14 → 1875,14
427
WVList
 
221
225
1
1
 
428
MItem
22
CLIB\ENVIRON\setenvp.c
23
CLIB\ENVIRON\searchen.c
429
WString
4
1893,14 → 1893,14
431
WVList
 
221
225
1
1
 
432
MItem
18
CLIB\FILE\remove.c
22
CLIB\ENVIRON\setenvp.c
433
WString
4
1911,7 → 1911,7
435
WVList
 
221
225
1
1
 
1918,7 → 1918,7
436
MItem
18
CLIB\FPU\cntrl87.c
CLIB\FILE\remove.c
437
WString
4
1929,7 → 1929,7
439
WVList
 
221
225
1
1
 
1936,7 → 1936,7
440
MItem
18
CLIB\FPU\cntrlfp.c
CLIB\FPU\cntrl87.c
441
WString
4
1947,14 → 1947,14
443
WVList
 
221
225
1
1
 
444
MItem
19
CLIB\FPU\fclex387.c
18
CLIB\FPU\cntrlfp.c
445
WString
4
1965,14 → 1965,14
447
WVList
 
221
225
1
1
 
448
MItem
24
CLIB\HANDLEIO\_clsewnt.c
19
CLIB\FPU\fclex387.c
449
WString
4
1983,14 → 1983,14
451
WVList
 
221
225
1
1
 
452
MItem
21
CLIB\HANDLEIO\close.c
24
CLIB\HANDLEIO\_clsewnt.c
453
WString
4
2001,14 → 2001,14
455
WVList
 
221
225
1
1
 
456
MItem
23
CLIB\HANDLEIO\filelen.c
21
CLIB\HANDLEIO\close.c
457
WString
4
2019,14 → 2019,14
459
WVList
 
221
225
1
1
 
460
MItem
21
CLIB\HANDLEIO\fsync.c
23
CLIB\HANDLEIO\filelen.c
461
WString
4
2037,14 → 2037,14
463
WVList
 
221
225
1
1
 
464
MItem
22
CLIB\HANDLEIO\hdlman.c
21
CLIB\HANDLEIO\fsync.c
465
WString
4
2055,7 → 2055,7
467
WVList
 
221
225
1
1
 
2062,7 → 2062,7
468
MItem
22
CLIB\HANDLEIO\iomode.c
CLIB\HANDLEIO\hdlman.c
469
WString
4
2073,14 → 2073,14
471
WVList
 
221
225
1
1
 
472
MItem
24
CLIB\HANDLEIO\iomodtty.c
22
CLIB\HANDLEIO\iomode.c
473
WString
4
2091,14 → 2091,14
475
WVList
 
221
225
1
1
 
476
MItem
21
CLIB\HANDLEIO\lseek.c
24
CLIB\HANDLEIO\iomodtty.c
477
WString
4
2109,14 → 2109,14
479
WVList
 
221
225
1
1
 
480
MItem
24
CLIB\HANDLEIO\lseekwnt.c
21
CLIB\HANDLEIO\lseek.c
481
WString
4
2127,7 → 2127,7
483
WVList
 
221
225
1
1
 
2134,7 → 2134,7
484
MItem
24
CLIB\HANDLEIO\openklbr.c
CLIB\HANDLEIO\lseekwnt.c
485
WString
4
2145,14 → 2145,14
487
WVList
 
221
225
1
1
 
488
MItem
21
CLIB\HANDLEIO\qread.c
24
CLIB\HANDLEIO\openklbr.c
489
WString
4
2163,7 → 2163,7
491
WVList
 
221
225
1
1
 
2170,7 → 2170,7
492
MItem
21
CLIB\HANDLEIO\qwrit.c
CLIB\HANDLEIO\qread.c
493
WString
4
2181,14 → 2181,14
495
WVList
 
221
225
1
1
 
496
MItem
20
CLIB\HANDLEIO\read.c
21
CLIB\HANDLEIO\qwrit.c
497
WString
4
2199,14 → 2199,14
499
WVList
 
221
225
1
1
 
500
MItem
24
CLIB\HANDLEIO\stiomode.c
20
CLIB\HANDLEIO\read.c
501
WString
4
2217,14 → 2217,14
503
WVList
 
221
225
1
1
 
504
MItem
20
CLIB\HANDLEIO\tell.c
24
CLIB\HANDLEIO\stiomode.c
505
WString
4
2235,14 → 2235,14
507
WVList
 
221
225
1
1
 
508
MItem
24
CLIB\HANDLEIO\unlnkwnt.c
20
CLIB\HANDLEIO\tell.c
509
WString
4
2253,14 → 2253,14
511
WVList
 
221
225
1
1
 
512
MItem
21
CLIB\HANDLEIO\write.c
24
CLIB\HANDLEIO\unlnkwnt.c
513
WString
4
2271,14 → 2271,14
515
WVList
 
221
225
1
1
 
516
MItem
20
CLIB\HEAP\amblksiz.c
21
CLIB\HANDLEIO\write.c
517
WString
4
2289,14 → 2289,14
519
WVList
 
221
225
1
1
 
520
MItem
19
CLIB\HEAP\ambsptr.c
20
CLIB\HEAP\amblksiz.c
521
WString
4
2307,14 → 2307,14
523
WVList
 
221
225
1
1
 
524
MItem
18
CLIB\HEAP\calloc.c
19
CLIB\HEAP\ambsptr.c
525
WString
4
2325,7 → 2325,7
527
WVList
 
221
225
1
1
 
2332,7 → 2332,7
528
MItem
18
CLIB\HEAP\freect.c
CLIB\HEAP\calloc.c
529
WString
4
2343,14 → 2343,14
531
WVList
 
221
225
1
1
 
532
MItem
20
CLIB\HEAP\grownear.c
18
CLIB\HEAP\freect.c
533
WString
4
2361,14 → 2361,14
535
WVList
 
221
225
1
1
 
536
MItem
18
CLIB\HEAP\heapen.c
20
CLIB\HEAP\grownear.c
537
WString
4
2379,14 → 2379,14
539
WVList
 
221
225
1
1
 
540
MItem
20
CLIB\HEAP\heapgrow.c
18
CLIB\HEAP\heapen.c
541
WString
4
2397,14 → 2397,14
543
WVList
 
221
225
1
1
 
544
MItem
15
CLIB\HEAP\mem.c
20
CLIB\HEAP\heapgrow.c
545
WString
4
2415,14 → 2415,14
547
WVList
 
221
225
1
1
 
548
MItem
18
CLIB\HEAP\memavl.c
15
CLIB\HEAP\mem.c
549
WString
4
2433,7 → 2433,7
551
WVList
 
221
225
1
1
 
2440,7 → 2440,7
552
MItem
18
CLIB\HEAP\memmax.c
CLIB\HEAP\memavl.c
553
WString
4
2451,14 → 2451,14
555
WVList
 
221
225
1
1
 
556
MItem
19
CLIB\HEAP\ncalloc.c
18
CLIB\HEAP\memmax.c
557
WString
4
2469,7 → 2469,7
559
WVList
 
221
225
1
1
 
2476,7 → 2476,7
560
MItem
19
CLIB\HEAP\nexpand.c
CLIB\HEAP\ncalloc.c
561
WString
4
2487,14 → 2487,14
563
WVList
 
221
225
1
1
 
564
MItem
17
CLIB\HEAP\nfree.c
19
CLIB\HEAP\nexpand.c
565
WString
4
2505,14 → 2505,14
567
WVList
 
221
225
1
1
 
568
MItem
20
CLIB\HEAP\nheapchk.c
17
CLIB\HEAP\nfree.c
569
WString
4
2523,7 → 2523,7
571
WVList
 
221
225
1
1
 
2530,7 → 2530,7
572
MItem
20
CLIB\HEAP\nheapmin.c
CLIB\HEAP\nheapchk.c
573
WString
4
2541,7 → 2541,7
575
WVList
 
221
225
1
1
 
2548,7 → 2548,7
576
MItem
20
CLIB\HEAP\nheapset.c
CLIB\HEAP\nheapmin.c
577
WString
4
2559,7 → 2559,7
579
WVList
 
221
225
1
1
 
2566,7 → 2566,7
580
MItem
20
CLIB\HEAP\nheapwal.c
CLIB\HEAP\nheapset.c
581
WString
4
2577,14 → 2577,14
583
WVList
 
221
225
1
1
 
584
MItem
19
CLIB\HEAP\nmalloc.c
20
CLIB\HEAP\nheapwal.c
585
WString
4
2595,14 → 2595,14
587
WVList
 
221
225
1
1
 
588
MItem
20
CLIB\HEAP\nmemneed.c
19
CLIB\HEAP\nmalloc.c
589
WString
4
2613,14 → 2613,14
591
WVList
 
221
225
1
1
 
592
MItem
18
CLIB\HEAP\nmsize.c
20
CLIB\HEAP\nmemneed.c
593
WString
4
2631,14 → 2631,14
595
WVList
 
221
225
1
1
 
596
MItem
20
CLIB\HEAP\nrealloc.c
18
CLIB\HEAP\nmsize.c
597
WString
4
2649,14 → 2649,14
599
WVList
 
221
225
1
1
 
600
MItem
19
CLIB\HEAP\sbrkwnt.c
20
CLIB\HEAP\nrealloc.c
601
WString
4
2667,14 → 2667,14
603
WVList
 
221
225
1
1
 
604
MItem
20
CLIB\INTEL\chipbug.c
19
CLIB\HEAP\sbrkwnt.c
605
WString
4
2685,14 → 2685,14
607
WVList
 
221
225
1
1
 
608
MItem
21
CLIB\INTEL\grabfp87.c
20
CLIB\INTEL\chipbug.c
609
WString
4
2703,7 → 2703,7
611
WVList
 
221
225
1
1
 
2710,7 → 2710,7
612
MItem
21
CLIB\INTEL\save8087.c
CLIB\INTEL\grabfp87.c
613
WString
4
2721,14 → 2721,14
615
WVList
 
221
225
1
1
 
616
MItem
20
CLIB\INTEL\segread.c
21
CLIB\INTEL\save8087.c
617
WString
4
2739,14 → 2739,14
619
WVList
 
221
225
1
1
 
620
MItem
21
CLIB\KANJI\mbdtoupp.c
20
CLIB\INTEL\segread.c
621
WString
4
2757,14 → 2757,14
623
WVList
 
221
225
1
1
 
624
MItem
15
CLIB\MATH\abs.c
21
CLIB\KANJI\mbdtoupp.c
625
WString
4
2775,14 → 2775,14
627
WVList
 
221
225
1
1
 
628
MItem
19
CLIB\MATH\hugeval.c
15
CLIB\MATH\abs.c
629
WString
4
2793,7 → 2793,7
631
WVList
 
221
225
1
1
 
2800,7 → 2800,7
632
MItem
19
CLIB\MATH\hvalptr.c
CLIB\MATH\hugeval.c
633
WString
4
2811,7 → 2811,7
635
WVList
 
221
225
1
1
 
2818,7 → 2818,7
636
MItem
19
CLIB\MATH\imaxabs.c
CLIB\MATH\hvalptr.c
637
WString
4
2829,7 → 2829,7
639
WVList
 
221
225
1
1
 
2836,7 → 2836,7
640
MItem
19
CLIB\MATH\imaxdiv.c
CLIB\MATH\imaxabs.c
641
WString
4
2847,14 → 2847,14
643
WVList
 
221
225
1
1
 
644
MItem
16
CLIB\MATH\labs.c
19
CLIB\MATH\imaxdiv.c
645
WString
4
2865,14 → 2865,14
647
WVList
 
221
225
1
1
 
648
MItem
17
CLIB\MATH\llabs.c
16
CLIB\MATH\labs.c
649
WString
4
2883,14 → 2883,14
651
WVList
 
221
225
1
1
 
652
MItem
15
CLIB\MATH\max.c
17
CLIB\MATH\llabs.c
653
WString
4
2901,7 → 2901,7
655
WVList
 
221
225
1
1
 
2908,7 → 2908,7
656
MItem
15
CLIB\MATH\min.c
CLIB\MATH\max.c
657
WString
4
2919,14 → 2919,14
659
WVList
 
221
225
1
1
 
660
MItem
16
CLIB\MATH\rand.c
15
CLIB\MATH\min.c
661
WString
4
2937,14 → 2937,14
663
WVList
 
221
225
1
1
 
664
MItem
21
CLIB\MBYTE\mbcupper.c
16
CLIB\MATH\rand.c
665
WString
4
2955,14 → 2955,14
667
WVList
 
221
225
1
1
 
668
MItem
19
CLIB\MBYTE\mbinit.c
21
CLIB\MBYTE\mbcupper.c
669
WString
4
2973,14 → 2973,14
671
WVList
 
221
225
1
1
 
672
MItem
21
CLIB\MBYTE\mbisdbcs.c
19
CLIB\MBYTE\mbinit.c
673
WString
4
2991,7 → 2991,7
675
WVList
 
221
225
1
1
 
2998,7 → 2998,7
676
MItem
21
CLIB\MBYTE\mbislead.c
CLIB\MBYTE\mbisdbcs.c
677
WString
4
3009,14 → 3009,14
679
WVList
 
221
225
1
1
 
680
MItem
19
CLIB\MBYTE\mbsinc.c
21
CLIB\MBYTE\mbislead.c
681
WString
4
3027,14 → 3027,14
683
WVList
 
221
225
1
1
 
684
MItem
21
CLIB\MBYTE\mbsnextc.c
19
CLIB\MBYTE\mbsinc.c
685
WString
4
3045,14 → 3045,14
687
WVList
 
221
225
1
1
 
688
MItem
19
CLIB\MBYTE\mbterm.c
21
CLIB\MBYTE\mbsnextc.c
689
WString
4
3063,7 → 3063,7
691
WVList
 
221
225
1
1
 
3070,7 → 3070,7
692
MItem
19
CLIB\MBYTE\mbtowc.c
CLIB\MBYTE\mbterm.c
693
WString
4
3081,14 → 3081,14
695
WVList
 
221
225
1
1
 
696
MItem
20
CLIB\MBYTE\setmbcp.c
19
CLIB\MBYTE\mbtowc.c
697
WString
4
3099,14 → 3099,14
699
WVList
 
221
225
1
1
 
700
MItem
19
CLIB\MBYTE\wctomb.c
20
CLIB\MBYTE\setmbcp.c
701
WString
4
3117,14 → 3117,14
703
WVList
 
221
225
1
1
 
704
MItem
18
CLIB\MEMORY\bcmp.c
19
CLIB\MBYTE\wctomb.c
705
WString
4
3135,14 → 3135,14
707
WVList
 
221
225
1
1
 
708
MItem
19
CLIB\MEMORY\bcopy.c
18
CLIB\MEMORY\bcmp.c
709
WString
4
3153,7 → 3153,7
711
WVList
 
221
225
1
1
 
3160,7 → 3160,7
712
MItem
19
CLIB\MEMORY\bzero.c
CLIB\MEMORY\bcopy.c
713
WString
4
3171,14 → 3171,14
715
WVList
 
221
225
1
1
 
716
MItem
22
CLIB\MEMORY\fmemccpy.c
19
CLIB\MEMORY\bzero.c
717
WString
4
3189,14 → 3189,14
719
WVList
 
221
225
1
1
 
720
MItem
21
CLIB\MEMORY\fmemchr.c
22
CLIB\MEMORY\fmemccpy.c
721
WString
4
3207,7 → 3207,7
723
WVList
 
221
225
1
1
 
3214,7 → 3214,7
724
MItem
21
CLIB\MEMORY\fmemcmp.c
CLIB\MEMORY\fmemchr.c
725
WString
4
3225,7 → 3225,7
727
WVList
 
221
225
1
1
 
3232,7 → 3232,7
728
MItem
21
CLIB\MEMORY\fmemcpy.c
CLIB\MEMORY\fmemcmp.c
729
WString
4
3243,14 → 3243,14
731
WVList
 
221
225
1
1
 
732
MItem
22
CLIB\MEMORY\fmemicmp.c
21
CLIB\MEMORY\fmemcpy.c
733
WString
4
3261,7 → 3261,7
735
WVList
 
221
225
1
1
 
3268,7 → 3268,7
736
MItem
22
CLIB\MEMORY\fmemmove.c
CLIB\MEMORY\fmemicmp.c
737
WString
4
3279,14 → 3279,14
739
WVList
 
221
225
1
1
 
740
MItem
21
CLIB\MEMORY\fmemset.c
22
CLIB\MEMORY\fmemmove.c
741
WString
4
3297,7 → 3297,7
743
WVList
 
221
225
1
1
 
3304,7 → 3304,7
744
MItem
21
CLIB\MEMORY\memccpy.c
CLIB\MEMORY\fmemset.c
745
WString
4
3315,14 → 3315,14
747
WVList
 
221
225
1
1
 
748
MItem
20
CLIB\MEMORY\memchr.c
21
CLIB\MEMORY\memccpy.c
749
WString
4
3333,7 → 3333,7
751
WVList
 
221
225
1
1
 
3340,7 → 3340,7
752
MItem
20
CLIB\MEMORY\memcmp.c
CLIB\MEMORY\memchr.c
753
WString
4
3351,7 → 3351,7
755
WVList
 
221
225
1
1
 
3358,7 → 3358,7
756
MItem
20
CLIB\MEMORY\memcpy.c
CLIB\MEMORY\memcmp.c
757
WString
4
3369,14 → 3369,14
759
WVList
 
221
225
1
1
 
760
MItem
22
CLIB\MEMORY\memcpy_s.c
20
CLIB\MEMORY\memcpy.c
761
WString
4
3387,14 → 3387,14
763
WVList
 
221
225
1
1
 
764
MItem
21
CLIB\MEMORY\memicmp.c
22
CLIB\MEMORY\memcpy_s.c
765
WString
4
3405,14 → 3405,14
767
WVList
 
221
225
1
1
 
768
MItem
22
CLIB\MEMORY\memmov_s.c
21
CLIB\MEMORY\memicmp.c
769
WString
4
3423,14 → 3423,14
771
WVList
 
221
225
1
1
 
772
MItem
21
CLIB\MEMORY\memmove.c
22
CLIB\MEMORY\memmov_s.c
773
WString
4
3441,14 → 3441,14
775
WVList
 
221
225
1
1
 
776
MItem
20
CLIB\MEMORY\memset.c
21
CLIB\MEMORY\memmove.c
777
WString
4
3459,14 → 3459,14
779
WVList
 
221
225
1
1
 
780
MItem
21
CLIB\MEMORY\memtest.c
20
CLIB\MEMORY\memset.c
781
WString
4
3477,14 → 3477,14
783
WVList
 
221
225
1
1
 
784
MItem
22
CLIB\MEMORY\movedata.c
21
CLIB\MEMORY\memtest.c
785
WString
4
3495,14 → 3495,14
787
WVList
 
221
225
1
1
 
788
MItem
18
CLIB\MEMORY\swab.c
22
CLIB\MEMORY\movedata.c
789
WString
4
3513,14 → 3513,14
791
WVList
 
221
225
1
1
 
792
MItem
21
CLIB\SEARCH\bsearch.c
18
CLIB\MEMORY\swab.c
793
WString
4
3531,14 → 3531,14
795
WVList
 
221
225
1
1
 
796
MItem
21
CLIB\SEARCH\bsrch_s.c
20
CLIB\PROCESS\signl.c
797
WString
4
3549,14 → 3549,14
799
WVList
 
221
225
1
1
 
800
MItem
19
CLIB\SEARCH\lfind.c
21
CLIB\SEARCH\bsearch.c
801
WString
4
3567,7 → 3567,7
803
WVList
 
221
225
1
1
 
3574,7 → 3574,7
804
MItem
21
CLIB\SEARCH\lsearch.c
CLIB\SEARCH\bsrch_s.c
805
WString
4
3585,7 → 3585,7
807
WVList
 
221
225
1
1
 
3592,7 → 3592,7
808
MItem
19
CLIB\SEARCH\qsort.c
CLIB\SEARCH\lfind.c
809
WString
4
3603,7 → 3603,7
811
WVList
 
221
225
1
1
 
3610,7 → 3610,7
812
MItem
21
CLIB\SEARCH\qsort_s.c
CLIB\SEARCH\lsearch.c
813
WString
4
3621,14 → 3621,14
815
WVList
 
221
225
1
1
 
816
MItem
23
CLIB\STREAMIO\allocfp.c
19
CLIB\SEARCH\qsort.c
817
WString
4
3639,14 → 3639,14
819
WVList
 
221
225
1
1
 
820
MItem
22
CLIB\STREAMIO\chktty.c
21
CLIB\SEARCH\qsort_s.c
821
WString
4
3657,14 → 3657,14
823
WVList
 
221
225
1
1
 
824
MItem
24
CLIB\STREAMIO\clearerr.c
23
CLIB\STREAMIO\allocfp.c
825
WString
4
3675,14 → 3675,14
827
WVList
 
221
225
1
1
 
828
MItem
24
CLIB\STREAMIO\comtflag.c
22
CLIB\STREAMIO\chktty.c
829
WString
4
3693,14 → 3693,14
831
WVList
 
221
225
1
1
 
832
MItem
23
CLIB\STREAMIO\dsetefg.c
24
CLIB\STREAMIO\clearerr.c
833
WString
4
3711,14 → 3711,14
835
WVList
 
221
225
1
1
 
836
MItem
22
CLIB\STREAMIO\fclose.c
24
CLIB\STREAMIO\comtflag.c
837
WString
4
3729,14 → 3729,14
839
WVList
 
221
225
1
1
 
840
MItem
22
CLIB\STREAMIO\fdopen.c
23
CLIB\STREAMIO\dsetefg.c
841
WString
4
3747,14 → 3747,14
843
WVList
 
221
225
1
1
 
844
MItem
20
CLIB\STREAMIO\feof.c
22
CLIB\STREAMIO\fclose.c
845
WString
4
3765,7 → 3765,7
847
WVList
 
221
225
1
1
 
3772,7 → 3772,7
848
MItem
22
CLIB\STREAMIO\ferror.c
CLIB\STREAMIO\fdopen.c
849
WString
4
3783,14 → 3783,14
851
WVList
 
221
225
1
1
 
852
MItem
22
CLIB\STREAMIO\fflush.c
20
CLIB\STREAMIO\feof.c
853
WString
4
3801,14 → 3801,14
855
WVList
 
221
225
1
1
 
856
MItem
21
CLIB\STREAMIO\fgetc.c
22
CLIB\STREAMIO\ferror.c
857
WString
4
3819,14 → 3819,14
859
WVList
 
221
225
1
1
 
860
MItem
24
CLIB\STREAMIO\fgetchar.c
22
CLIB\STREAMIO\fflush.c
861
WString
4
3837,14 → 3837,14
863
WVList
 
221
225
1
1
 
864
MItem
23
CLIB\STREAMIO\fgetpos.c
21
CLIB\STREAMIO\fgetc.c
865
WString
4
3855,14 → 3855,14
867
WVList
 
221
225
1
1
 
868
MItem
21
CLIB\STREAMIO\fgets.c
24
CLIB\STREAMIO\fgetchar.c
869
WString
4
3873,14 → 3873,14
871
WVList
 
221
225
1
1
 
872
MItem
21
CLIB\STREAMIO\flush.c
23
CLIB\STREAMIO\fgetpos.c
873
WString
4
3891,14 → 3891,14
875
WVList
 
221
225
1
1
 
876
MItem
24
CLIB\STREAMIO\flushall.c
21
CLIB\STREAMIO\fgets.c
877
WString
4
3909,7 → 3909,7
879
WVList
 
221
225
1
1
 
3916,7 → 3916,7
880
MItem
21
CLIB\STREAMIO\fopen.c
CLIB\STREAMIO\flush.c
881
WString
4
3927,14 → 3927,14
883
WVList
 
221
225
1
1
 
884
MItem
23
CLIB\STREAMIO\fopen_s.c
24
CLIB\STREAMIO\flushall.c
885
WString
4
3945,14 → 3945,14
887
WVList
 
221
225
1
1
 
888
MItem
23
CLIB\STREAMIO\fprintf.c
21
CLIB\STREAMIO\fopen.c
889
WString
4
3963,14 → 3963,14
891
WVList
 
221
225
1
1
 
892
MItem
24
CLIB\STREAMIO\fprntf_s.c
23
CLIB\STREAMIO\fopen_s.c
893
WString
4
3981,14 → 3981,14
895
WVList
 
221
225
1
1
 
896
MItem
21
CLIB\STREAMIO\fprtf.c
23
CLIB\STREAMIO\fprintf.c
897
WString
4
3999,14 → 3999,14
899
WVList
 
221
225
1
1
 
900
MItem
23
CLIB\STREAMIO\fprtf_s.c
24
CLIB\STREAMIO\fprntf_s.c
901
WString
4
4017,7 → 4017,7
903
WVList
 
221
225
1
1
 
4024,7 → 4024,7
904
MItem
21
CLIB\STREAMIO\fputc.c
CLIB\STREAMIO\fprtf.c
905
WString
4
4035,14 → 4035,14
907
WVList
 
221
225
1
1
 
908
MItem
24
CLIB\STREAMIO\fputchar.c
23
CLIB\STREAMIO\fprtf_s.c
909
WString
4
4053,7 → 4053,7
911
WVList
 
221
225
1
1
 
4060,7 → 4060,7
912
MItem
21
CLIB\STREAMIO\fputs.c
CLIB\STREAMIO\fputc.c
913
WString
4
4071,14 → 4071,14
915
WVList
 
221
225
1
1
 
916
MItem
21
CLIB\STREAMIO\fread.c
24
CLIB\STREAMIO\fputchar.c
917
WString
4
4089,14 → 4089,14
919
WVList
 
221
225
1
1
 
920
MItem
22
CLIB\STREAMIO\freefp.c
21
CLIB\STREAMIO\fputs.c
921
WString
4
4107,14 → 4107,14
923
WVList
 
221
225
1
1
 
924
MItem
23
CLIB\STREAMIO\freop_s.c
21
CLIB\STREAMIO\fread.c
925
WString
4
4125,7 → 4125,7
927
WVList
 
221
225
1
1
 
4132,7 → 4132,7
928
MItem
22
CLIB\STREAMIO\fscanf.c
CLIB\STREAMIO\freefp.c
929
WString
4
4143,14 → 4143,14
931
WVList
 
221
225
1
1
 
932
MItem
24
CLIB\STREAMIO\fscanf_s.c
23
CLIB\STREAMIO\freop_s.c
933
WString
4
4161,14 → 4161,14
935
WVList
 
221
225
1
1
 
936
MItem
21
CLIB\STREAMIO\fseek.c
22
CLIB\STREAMIO\fscanf.c
937
WString
4
4179,14 → 4179,14
939
WVList
 
221
225
1
1
 
940
MItem
23
CLIB\STREAMIO\fsetpos.c
24
CLIB\STREAMIO\fscanf_s.c
941
WString
4
4197,7 → 4197,7
943
WVList
 
221
225
1
1
 
4204,7 → 4204,7
944
MItem
21
CLIB\STREAMIO\ftell.c
CLIB\STREAMIO\fseek.c
945
WString
4
4215,14 → 4215,14
947
WVList
 
221
225
1
1
 
948
MItem
21
CLIB\STREAMIO\fwide.c
23
CLIB\STREAMIO\fsetpos.c
949
WString
4
4233,14 → 4233,14
951
WVList
 
221
225
1
1
 
952
MItem
22
CLIB\STREAMIO\fwrite.c
21
CLIB\STREAMIO\ftell.c
953
WString
4
4251,14 → 4251,14
955
WVList
 
221
225
1
1
 
956
MItem
20
CLIB\STREAMIO\getc.c
21
CLIB\STREAMIO\fwide.c
957
WString
4
4269,14 → 4269,14
959
WVList
 
221
225
1
1
 
960
MItem
23
CLIB\STREAMIO\getchar.c
22
CLIB\STREAMIO\fwrite.c
961
WString
4
4287,7 → 4287,7
963
WVList
 
221
225
1
1
 
4294,7 → 4294,7
964
MItem
20
CLIB\STREAMIO\gets.c
CLIB\STREAMIO\getc.c
965
WString
4
4305,14 → 4305,14
967
WVList
 
221
225
1
1
 
968
MItem
22
CLIB\STREAMIO\gets_s.c
23
CLIB\STREAMIO\getchar.c
969
WString
4
4323,7 → 4323,7
971
WVList
 
221
225
1
1
 
4330,7 → 4330,7
972
MItem
20
CLIB\STREAMIO\getw.c
CLIB\STREAMIO\gets.c
973
WString
4
4341,14 → 4341,14
975
WVList
 
221
225
1
1
 
976
MItem
24
CLIB\STREAMIO\initfile.c
22
CLIB\STREAMIO\gets_s.c
977
WString
4
4359,14 → 4359,14
979
WVList
 
221
225
1
1
 
980
MItem
23
CLIB\STREAMIO\ioalloc.c
20
CLIB\STREAMIO\getw.c
981
WString
4
4377,14 → 4377,14
983
WVList
 
221
225
1
1
 
984
MItem
19
CLIB\STREAMIO\iob.c
24
CLIB\STREAMIO\initfile.c
985
WString
4
4395,7 → 4395,7
987
WVList
 
221
225
1
1
 
4402,7 → 4402,7
988
MItem
23
CLIB\STREAMIO\iobaddr.c
CLIB\STREAMIO\ioalloc.c
989
WString
4
4413,14 → 4413,14
991
WVList
 
221
225
1
1
 
992
MItem
22
CLIB\STREAMIO\iobptr.c
19
CLIB\STREAMIO\iob.c
993
WString
4
4431,14 → 4431,14
995
WVList
 
221
225
1
1
 
996
MItem
24
CLIB\STREAMIO\noefgfmt.c
23
CLIB\STREAMIO\iobaddr.c
997
WString
4
4449,7 → 4449,7
999
WVList
 
221
225
1
1
 
4456,7 → 4456,7
1000
MItem
22
CLIB\STREAMIO\perror.c
CLIB\STREAMIO\iobptr.c
1001
WString
4
4467,14 → 4467,14
1003
WVList
 
221
225
1
1
 
1004
MItem
22
CLIB\STREAMIO\printf.c
24
CLIB\STREAMIO\noefgfmt.c
1005
WString
4
4485,14 → 4485,14
1007
WVList
 
221
225
1
1
 
1008
MItem
24
CLIB\STREAMIO\printf_s.c
22
CLIB\STREAMIO\perror.c
1009
WString
4
4503,14 → 4503,14
1011
WVList
 
221
225
1
1
 
1012
MItem
20
CLIB\STREAMIO\prtf.c
22
CLIB\STREAMIO\printf.c
1013
WString
4
4521,14 → 4521,14
1015
WVList
 
221
225
1
1
 
1016
MItem
22
CLIB\STREAMIO\prtf_s.c
24
CLIB\STREAMIO\printf_s.c
1017
WString
4
4539,7 → 4539,7
1019
WVList
 
221
225
1
1
 
4546,7 → 4546,7
1020
MItem
20
CLIB\STREAMIO\putc.c
CLIB\STREAMIO\prtf.c
1021
WString
4
4557,14 → 4557,14
1023
WVList
 
221
225
1
1
 
1024
MItem
23
CLIB\STREAMIO\putchar.c
22
CLIB\STREAMIO\prtf_s.c
1025
WString
4
4575,7 → 4575,7
1027
WVList
 
221
225
1
1
 
4582,7 → 4582,7
1028
MItem
20
CLIB\STREAMIO\puts.c
CLIB\STREAMIO\putc.c
1029
WString
4
4593,14 → 4593,14
1031
WVList
 
221
225
1
1
 
1032
MItem
20
CLIB\STREAMIO\putw.c
23
CLIB\STREAMIO\putchar.c
1033
WString
4
4611,14 → 4611,14
1035
WVList
 
221
225
1
1
 
1036
MItem
22
CLIB\STREAMIO\rewind.c
20
CLIB\STREAMIO\puts.c
1037
WString
4
4629,14 → 4629,14
1039
WVList
 
221
225
1
1
 
1040
MItem
21
CLIB\STREAMIO\scanf.c
20
CLIB\STREAMIO\putw.c
1041
WString
4
4647,14 → 4647,14
1043
WVList
 
221
225
1
1
 
1044
MItem
23
CLIB\STREAMIO\scanf_s.c
22
CLIB\STREAMIO\rewind.c
1045
WString
4
4665,14 → 4665,14
1047
WVList
 
221
225
1
1
 
1048
MItem
20
CLIB\STREAMIO\scnf.c
21
CLIB\STREAMIO\scanf.c
1049
WString
4
4683,14 → 4683,14
1051
WVList
 
221
225
1
1
 
1052
MItem
22
CLIB\STREAMIO\scnf_s.c
23
CLIB\STREAMIO\scanf_s.c
1053
WString
4
4701,14 → 4701,14
1055
WVList
 
221
225
1
1
 
1056
MItem
22
CLIB\STREAMIO\setbuf.c
20
CLIB\STREAMIO\scnf.c
1057
WString
4
4719,7 → 4719,7
1059
WVList
 
221
225
1
1
 
4726,7 → 4726,7
1060
MItem
22
CLIB\STREAMIO\setefg.c
CLIB\STREAMIO\scnf_s.c
1061
WString
4
4737,14 → 4737,14
1063
WVList
 
221
225
1
1
 
1064
MItem
23
CLIB\STREAMIO\setvbuf.c
22
CLIB\STREAMIO\setbuf.c
1065
WString
4
4755,14 → 4755,14
1067
WVList
 
221
225
1
1
 
1068
MItem
21
CLIB\STREAMIO\tmpfl.c
22
CLIB\STREAMIO\setefg.c
1069
WString
4
4773,7 → 4773,7
1071
WVList
 
221
225
1
1
 
4780,7 → 4780,7
1072
MItem
23
CLIB\STREAMIO\tmputil.c
CLIB\STREAMIO\setvbuf.c
1073
WString
4
4791,14 → 4791,14
1075
WVList
 
221
225
1
1
 
1076
MItem
18
CLIB\STRING\bits.c
21
CLIB\STREAMIO\tmpfl.c
1077
WString
4
4809,14 → 4809,14
1079
WVList
 
221
225
1
1
 
1080
MItem
21
CLIB\STRING\bprintf.c
23
CLIB\STREAMIO\tmputil.c
1081
WString
4
4827,14 → 4827,14
1083
WVList
 
221
225
1
1
 
1084
MItem
22
CLIB\STRING\fsetbits.c
18
CLIB\STRING\bits.c
1085
WString
4
4845,7 → 4845,7
1087
WVList
 
221
225
1
1
 
4852,7 → 4852,7
1088
MItem
21
CLIB\STRING\fstrcat.c
CLIB\STRING\bprintf.c
1089
WString
4
4863,14 → 4863,14
1091
WVList
 
221
225
1
1
 
1092
MItem
21
CLIB\STRING\fstrchr.c
22
CLIB\STRING\fsetbits.c
1093
WString
4
4881,7 → 4881,7
1095
WVList
 
221
225
1
1
 
4888,7 → 4888,7
1096
MItem
21
CLIB\STRING\fstrcmp.c
CLIB\STRING\fstrcat.c
1097
WString
4
4899,7 → 4899,7
1099
WVList
 
221
225
1
1
 
4906,7 → 4906,7
1100
MItem
21
CLIB\STRING\fstrcpy.c
CLIB\STRING\fstrchr.c
1101
WString
4
4917,14 → 4917,14
1103
WVList
 
221
225
1
1
 
1104
MItem
22
CLIB\STRING\fstrcspn.c
21
CLIB\STRING\fstrcmp.c
1105
WString
4
4935,7 → 4935,7
1107
WVList
 
221
225
1
1
 
4942,7 → 4942,7
1108
MItem
21
CLIB\STRING\fstrdup.c
CLIB\STRING\fstrcpy.c
1109
WString
4
4953,7 → 4953,7
1111
WVList
 
221
225
1
1
 
4960,7 → 4960,7
1112
MItem
22
CLIB\STRING\fstricmp.c
CLIB\STRING\fstrcspn.c
1113
WString
4
4971,7 → 4971,7
1115
WVList
 
221
225
1
1
 
4978,7 → 4978,7
1116
MItem
21
CLIB\STRING\fstrlen.c
CLIB\STRING\fstrdup.c
1117
WString
4
4989,14 → 4989,14
1119
WVList
 
221
225
1
1
 
1120
MItem
21
CLIB\STRING\fstrlwr.c
22
CLIB\STRING\fstricmp.c
1121
WString
4
5007,14 → 5007,14
1123
WVList
 
221
225
1
1
 
1124
MItem
22
CLIB\STRING\fstrncat.c
21
CLIB\STRING\fstrlen.c
1125
WString
4
5025,14 → 5025,14
1127
WVList
 
221
225
1
1
 
1128
MItem
22
CLIB\STRING\fstrncmp.c
21
CLIB\STRING\fstrlwr.c
1129
WString
4
5043,7 → 5043,7
1131
WVList
 
221
225
1
1
 
5050,7 → 5050,7
1132
MItem
22
CLIB\STRING\fstrncpy.c
CLIB\STRING\fstrncat.c
1133
WString
4
5061,7 → 5061,7
1135
WVList
 
221
225
1
1
 
5068,7 → 5068,7
1136
MItem
22
CLIB\STRING\fstrnicm.c
CLIB\STRING\fstrncmp.c
1137
WString
4
5079,7 → 5079,7
1139
WVList
 
221
225
1
1
 
5086,7 → 5086,7
1140
MItem
22
CLIB\STRING\fstrnset.c
CLIB\STRING\fstrncpy.c
1141
WString
4
5097,7 → 5097,7
1143
WVList
 
221
225
1
1
 
5104,7 → 5104,7
1144
MItem
22
CLIB\STRING\fstrpbrk.c
CLIB\STRING\fstrnicm.c
1145
WString
4
5115,7 → 5115,7
1147
WVList
 
221
225
1
1
 
5122,7 → 5122,7
1148
MItem
22
CLIB\STRING\fstrrchr.c
CLIB\STRING\fstrnset.c
1149
WString
4
5133,14 → 5133,14
1151
WVList
 
221
225
1
1
 
1152
MItem
21
CLIB\STRING\fstrrev.c
22
CLIB\STRING\fstrpbrk.c
1153
WString
4
5151,14 → 5151,14
1155
WVList
 
221
225
1
1
 
1156
MItem
21
CLIB\STRING\fstrset.c
22
CLIB\STRING\fstrrchr.c
1157
WString
4
5169,7 → 5169,7
1159
WVList
 
221
225
1
1
 
5176,7 → 5176,7
1160
MItem
21
CLIB\STRING\fstrspn.c
CLIB\STRING\fstrrev.c
1161
WString
4
5187,14 → 5187,14
1163
WVList
 
221
225
1
1
 
1164
MItem
22
CLIB\STRING\fstrspnp.c
21
CLIB\STRING\fstrset.c
1165
WString
4
5205,7 → 5205,7
1167
WVList
 
221
225
1
1
 
5212,7 → 5212,7
1168
MItem
21
CLIB\STRING\fstrstr.c
CLIB\STRING\fstrspn.c
1169
WString
4
5223,14 → 5223,14
1171
WVList
 
221
225
1
1
 
1172
MItem
21
CLIB\STRING\fstrtok.c
22
CLIB\STRING\fstrspnp.c
1173
WString
4
5241,7 → 5241,7
1175
WVList
 
221
225
1
1
 
5248,7 → 5248,7
1176
MItem
21
CLIB\STRING\fstrupr.c
CLIB\STRING\fstrstr.c
1177
WString
4
5259,14 → 5259,14
1179
WVList
 
221
225
1
1
 
1180
MItem
20
CLIB\STRING\selptr.c
21
CLIB\STRING\fstrtok.c
1181
WString
4
5277,14 → 5277,14
1183
WVList
 
221
225
1
1
 
1184
MItem
20
CLIB\STRING\sneptr.c
21
CLIB\STRING\fstrupr.c
1185
WString
4
5295,14 → 5295,14
1187
WVList
 
221
225
1
1
 
1188
MItem
22
CLIB\STRING\snprintf.c
20
CLIB\STRING\selptr.c
1189
WString
4
5313,14 → 5313,14
1191
WVList
 
221
225
1
1
 
1192
MItem
22
CLIB\STRING\snprtf_s.c
20
CLIB\STRING\sneptr.c
1193
WString
4
5331,14 → 5331,14
1195
WVList
 
221
225
1
1
 
1196
MItem
21
CLIB\STRING\sprintf.c
22
CLIB\STRING\snprintf.c
1197
WString
4
5349,7 → 5349,7
1199
WVList
 
221
225
1
1
 
5356,7 → 5356,7
1200
MItem
22
CLIB\STRING\sprntf_s.c
CLIB\STRING\snprtf_s.c
1201
WString
4
5367,14 → 5367,14
1203
WVList
 
221
225
1
1
 
1204
MItem
20
CLIB\STRING\sscanf.c
21
CLIB\STRING\sprintf.c
1205
WString
4
5385,7 → 5385,7
1207
WVList
 
221
225
1
1
 
5392,7 → 5392,7
1208
MItem
22
CLIB\STRING\sscanf_s.c
CLIB\STRING\sprntf_s.c
1209
WString
4
5403,14 → 5403,14
1211
WVList
 
221
225
1
1
 
1212
MItem
22
CLIB\STRING\stncat_s.c
20
CLIB\STRING\sscanf.c
1213
WString
4
5421,7 → 5421,7
1215
WVList
 
221
225
1
1
 
5428,7 → 5428,7
1216
MItem
22
CLIB\STRING\stncpy_s.c
CLIB\STRING\sscanf_s.c
1217
WString
4
5439,14 → 5439,14
1219
WVList
 
221
225
1
1
 
1220
MItem
20
CLIB\STRING\strcat.c
22
CLIB\STRING\stncat_s.c
1221
WString
4
5457,7 → 5457,7
1223
WVList
 
221
225
1
1
 
5464,7 → 5464,7
1224
MItem
22
CLIB\STRING\strcat_s.c
CLIB\STRING\stncpy_s.c
1225
WString
4
5475,7 → 5475,7
1227
WVList
 
221
225
1
1
 
5482,7 → 5482,7
1228
MItem
20
CLIB\STRING\strchr.c
CLIB\STRING\strcat.c
1229
WString
4
5493,14 → 5493,14
1231
WVList
 
221
225
1
1
 
1232
MItem
21
CLIB\STRING\strcoll.c
22
CLIB\STRING\strcat_s.c
1233
WString
4
5511,7 → 5511,7
1235
WVList
 
221
225
1
1
 
5518,7 → 5518,7
1236
MItem
20
CLIB\STRING\strcpy.c
CLIB\STRING\strchr.c
1237
WString
4
5529,14 → 5529,14
1239
WVList
 
221
225
1
1
 
1240
MItem
22
CLIB\STRING\strcpy_s.c
21
CLIB\STRING\strcoll.c
1241
WString
4
5547,14 → 5547,14
1243
WVList
 
221
225
1
1
 
1244
MItem
21
CLIB\STRING\strcspn.c
20
CLIB\STRING\strcpy.c
1245
WString
4
5565,14 → 5565,14
1247
WVList
 
221
225
1
1
 
1248
MItem
20
CLIB\STRING\strdup.c
22
CLIB\STRING\strcpy_s.c
1249
WString
4
5583,14 → 5583,14
1251
WVList
 
221
225
1
1
 
1252
MItem
22
CLIB\STRING\streln_s.c
21
CLIB\STRING\strcspn.c
1253
WString
4
5601,14 → 5601,14
1255
WVList
 
221
225
1
1
 
1256
MItem
22
CLIB\STRING\strerr_s.c
20
CLIB\STRING\strdup.c
1257
WString
4
5619,7 → 5619,7
1259
WVList
 
221
225
1
1
 
5626,7 → 5626,7
1260
MItem
22
CLIB\STRING\strerror.c
CLIB\STRING\streln_s.c
1261
WString
4
5637,14 → 5637,14
1263
WVList
 
221
225
1
1
 
1264
MItem
21
CLIB\STRING\stricmp.c
22
CLIB\STRING\strerr_s.c
1265
WString
4
5655,14 → 5655,14
1267
WVList
 
221
225
1
1
 
1268
MItem
21
CLIB\STRING\strlcat.c
22
CLIB\STRING\strerror.c
1269
WString
4
5673,7 → 5673,7
1271
WVList
 
221
225
1
1
 
5680,7 → 5680,7
1272
MItem
21
CLIB\STRING\strlcpy.c
CLIB\STRING\stricmp.c
1273
WString
4
5691,14 → 5691,14
1275
WVList
 
221
225
1
1
 
1276
MItem
20
CLIB\STRING\strlen.c
21
CLIB\STRING\strlcat.c
1277
WString
4
5709,14 → 5709,14
1279
WVList
 
221
225
1
1
 
1280
MItem
20
CLIB\STRING\strlwr.c
21
CLIB\STRING\strlcpy.c
1281
WString
4
5727,14 → 5727,14
1283
WVList
 
221
225
1
1
 
1284
MItem
21
CLIB\STRING\strncat.c
20
CLIB\STRING\strlen.c
1285
WString
4
5745,14 → 5745,14
1287
WVList
 
221
225
1
1
 
1288
MItem
21
CLIB\STRING\strncmp.c
20
CLIB\STRING\strlwr.c
1289
WString
4
5763,7 → 5763,7
1291
WVList
 
221
225
1
1
 
5770,7 → 5770,7
1292
MItem
21
CLIB\STRING\strncpy.c
CLIB\STRING\strncat.c
1293
WString
4
5781,14 → 5781,14
1295
WVList
 
221
225
1
1
 
1296
MItem
22
CLIB\STRING\strnicmp.c
21
CLIB\STRING\strncmp.c
1297
WString
4
5799,14 → 5799,14
1299
WVList
 
221
225
1
1
 
1300
MItem
22
CLIB\STRING\strnln_s.c
21
CLIB\STRING\strncpy.c
1301
WString
4
5817,14 → 5817,14
1303
WVList
 
221
225
1
1
 
1304
MItem
21
CLIB\STRING\strnset.c
22
CLIB\STRING\strnicmp.c
1305
WString
4
5835,14 → 5835,14
1307
WVList
 
221
225
1
1
 
1308
MItem
21
CLIB\STRING\strpbrk.c
22
CLIB\STRING\strnln_s.c
1309
WString
4
5853,7 → 5853,7
1311
WVList
 
221
225
1
1
 
5860,7 → 5860,7
1312
MItem
21
CLIB\STRING\strrchr.c
CLIB\STRING\strnset.c
1313
WString
4
5871,14 → 5871,14
1315
WVList
 
221
225
1
1
 
1316
MItem
20
CLIB\STRING\strrev.c
21
CLIB\STRING\strpbrk.c
1317
WString
4
5889,14 → 5889,14
1319
WVList
 
221
225
1
1
 
1320
MItem
20
CLIB\STRING\strset.c
21
CLIB\STRING\strrchr.c
1321
WString
4
5907,7 → 5907,7
1323
WVList
 
221
225
1
1
 
5914,7 → 5914,7
1324
MItem
20
CLIB\STRING\strspn.c
CLIB\STRING\strrev.c
1325
WString
4
5925,14 → 5925,14
1327
WVList
 
221
225
1
1
 
1328
MItem
21
CLIB\STRING\strspnp.c
20
CLIB\STRING\strset.c
1329
WString
4
5943,7 → 5943,7
1331
WVList
 
221
225
1
1
 
5950,7 → 5950,7
1332
MItem
20
CLIB\STRING\strstr.c
CLIB\STRING\strspn.c
1333
WString
4
5961,14 → 5961,14
1335
WVList
 
221
225
1
1
 
1336
MItem
20
CLIB\STRING\strtok.c
21
CLIB\STRING\strspnp.c
1337
WString
4
5979,14 → 5979,14
1339
WVList
 
221
225
1
1
 
1340
MItem
22
CLIB\STRING\strtok_s.c
20
CLIB\STRING\strstr.c
1341
WString
4
5997,7 → 5997,7
1343
WVList
 
221
225
1
1
 
6004,7 → 6004,7
1344
MItem
20
CLIB\STRING\strupr.c
CLIB\STRING\strtok.c
1345
WString
4
6015,14 → 6015,14
1347
WVList
 
221
225
1
1
 
1348
MItem
21
CLIB\STRING\strxfrm.c
22
CLIB\STRING\strtok_s.c
1349
WString
4
6033,14 → 6033,14
1351
WVList
 
221
225
1
1
 
1352
MItem
22
CLIB\STRING\vsprintf.c
20
CLIB\STRING\strupr.c
1353
WString
4
6051,14 → 6051,14
1355
WVList
 
221
225
1
1
 
1356
MItem
18
CLIB\TIME\gmtime.c
21
CLIB\STRING\strxfrm.c
1357
WString
4
6069,14 → 6069,14
1359
WVList
 
221
225
1
1
 
1360
MItem
20
CLIB\TIME\leapyear.c
22
CLIB\STRING\vsprintf.c
1361
WString
4
6087,14 → 6087,14
1363
WVList
 
221
225
1
1
 
1364
MItem
20
CLIB\TIME\localtim.c
18
CLIB\TIME\gmtime.c
1365
WString
4
6105,7 → 6105,7
1367
WVList
 
221
225
1
1
 
6112,7 → 6112,7
1368
MItem
20
CLIB\TIME\locmktim.c
CLIB\TIME\leapyear.c
1369
WString
4
6123,14 → 6123,14
1371
WVList
 
221
225
1
1
 
1372
MItem
18
CLIB\TIME\mktime.c
20
CLIB\TIME\localtim.c
1373
WString
4
6141,14 → 6141,14
1375
WVList
 
221
225
1
1
 
1376
MItem
16
CLIB\TIME\time.c
20
CLIB\TIME\locmktim.c
1377
WString
4
6159,14 → 6159,14
1379
WVList
 
221
225
1
1
 
1380
MItem
20
CLIB\TIME\timeutil.c
18
CLIB\TIME\mktime.c
1381
WString
4
6177,14 → 6177,14
1383
WVList
 
221
225
1
1
 
1384
MItem
17
CLIB\TIME\tzset.c
16
CLIB\TIME\time.c
1385
WString
4
6195,18 → 6195,18
1387
WVList
 
221
225
1
1
 
1388
MItem
3
*.h
20
CLIB\TIME\timeutil.c
1389
WString
3
NIL
4
COBJ
1390
WVList
 
6213,18 → 6213,18
1391
WVList
 
-1
225
1
1
 
 
1392
MItem
20
CLIB\MATH\randnext.h
17
CLIB\TIME\tzset.c
1393
WString
3
NIL
4
COBJ
1394
WVList
 
6231,14 → 6231,14
1395
WVList
 
1388
225
1
1
 
1396
MItem
20
CLIB\STRING\errstr.h
3
*.h
1397
WString
3
6249,14 → 6249,14
1399
WVList
 
1388
-1
1
1
 
 
1400
MItem
22
CLIB\STRING\nextftok.h
20
CLIB\MATH\randnext.h
1401
WString
3
6267,14 → 6267,14
1403
WVList
 
1388
1396
1
1
 
1404
MItem
21
CLIB\STRING\nexttok.h
20
CLIB\STRING\errstr.h
1405
WString
3
6285,14 → 6285,14
1407
WVList
 
1388
1396
1
1
 
1408
MItem
21
CLIB\STRING\setbits.h
22
CLIB\STRING\nextftok.h
1409
WString
3
6303,7 → 6303,43
1411
WVList
 
1388
1396
1
1
 
1412
MItem
21
CLIB\STRING\nexttok.h
1413
WString
3
NIL
1414
WVList
 
1415
WVList
 
1396
1
1
 
1416
MItem
21
CLIB\STRING\setbits.h
1417
WString
3
NIL
1418
WVList
 
1419
WVList
 
1396
1
1