Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 703 → Rev 704

/programs/develop/open watcom/trunk/clib/alias/_icstrdu.asm
0,0 → 1,3
include mdef.inc
alias_function strdup, __clib_strdup
end
/programs/develop/open watcom/trunk/clib/alias/_istrcmp.asm
0,0 → 1,3
include mdef.inc
alias_function strcmpi, stricmp
end
/programs/develop/open watcom/trunk/clib/alias/_istrdup.asm
0,0 → 1,3
include mdef.inc
alias_function _strdup, __clib_strdup
end
/programs/develop/open watcom/trunk/clib/alias/_istricm.asm
0,0 → 1,3
include mdef.inc
alias_function _stricmp, stricmp
end
/programs/develop/open watcom/trunk/clib/crt/crwd386.asm
49,34 → 49,18
 
assume DS:DGROUP
 
extrn ___cmdline : near
extrn ___pgmname : near
 
_LpCmdLine dd offset ___cmdline ; pointer to raw command line
_LpPgmName dd offset ___pgmname ; pointer to program name (for argv[0])
 
 
ifndef __NETWARE__
_dynend dd 0 ; top of dynamic data area
_curbrk dd 0 ; top of usable memory
endif
ifndef __QNX__
ifndef __LINUX__
ifndef _NETWARE_LIBC
_LpCmdLine dd 0 ; pointer to raw command line
_LpPgmName dd 0 ; pointer to program name (for argv[0])
endif
ifdef __NT__
_LpDllName dd 0 ; pointer to dll name (for OS/2,WIN32)
_LpwCmdLine dd 0 ; pointer to widechar raw command line
_LpwPgmName dd 0 ; pointer to widechar program name (for argv[0])
_LpwDllName dd 0 ; pointer to widechar dll name (for OS/2,WIN32)
endif
ifdef __OS2__
_LpDllName dd 0 ; pointer to dll name (for OS/2,WIN32)
_LpwCmdLine dd 0 ; pointer to widechar raw command line
_LpwPgmName dd 0 ; pointer to widechar program name (for argv[0])
_LpwDllName dd 0 ; pointer to widechar dll name (for OS/2,WIN32)
endif
ifdef __DOS__
_psp dw 0,0 ; segment addr of program segment prefix
__x386_stacklow label dword
endif
endif
endif
 
_STACKLOW dd 0 ; lowest address in stack
_STACKTOP dd 0 ; highest address in stack
__EFG_printf dd 0
83,11 → 67,13
__EFG_scanf dd 0
__ASTACKSIZ dd 0 ; alternate stack size
__ASTACKPTR dd 0 ; alternate stack pointer
 
ifndef __NETWARE__
_cbyte dd 0 ; used by getch, getche
_cbyte2 dd 0 ; used by getch, getche
_child dd 0 ; non-zero => a spawned process is running
endif
 
__no87 dw 0 ; non-zero => "NO87" environment var present
ifndef __NETWARE__
ifdef __DOS__
141,10 → 127,6
public "C",_LpPgmName
endif
ifdef __NT__
public "C",_LpDllName
public "C",_LpwCmdLine
public "C",_LpwPgmName
public "C",_LpwDllName
public "C",_LpCmdLine
public "C",_LpPgmName
endif
/programs/develop/open watcom/trunk/clib/crt/cstrtwnt.asm
39,10 → 39,9
 
extrn __NTMain : near
extrn ___begtext : near
extrn __LpCmdLine : near
extrn __LpPgmName : near
extrn __STACKLOW : near
extrn __STACKTOP : near
extrn ___stack_low : near
 
_TEXT segment use32 word public 'CODE'
 
55,14 → 54,8
mainCRTStartup:
 
mov dword ptr [__STACKTOP], esp
lea eax, [esp-40000h]
mov dword ptr[__STACKLOW], eax
mov dword ptr[__STACKLOW], offset ___stack_low
mov eax, dword ptr [ds:0x1c]
mov dword ptr [__LpCmdLine], eax
mov eax, dword ptr [ds:0x20]
mov dword ptr [__LpPgmName], eax
 
jmp __NTMain
dd ___begtext ; reference module with segment definitions
;
/programs/develop/open watcom/trunk/clib/crt/main2wnt.c
36,12 → 36,13
#include <string.h>
#include <malloc.h>
#include <windows.h>
//#include "ntex.h"
 
#include "kolibri.h"
 
//#include "sigtab.h"
#include "initfini.h"
#include "initarg.h"
 
void _stdcall InitHeap(int heap_size);
int __appcwdlen;
char* __appcwd;
extern char *LpCmdLine;
74,7 → 75,7
/***************************************/
{
 
InitHeap(0);
init_heap();
__process_fini = &__FiniRtns;
__InitRtns( 255 );
106,6 → 107,8
#endif
#endif
 
#pragma aux __exit aborts;
 
_WCRTLINK void __exit( unsigned ret_code )
{
__FiniRtns( 0, FINI_PRIORITY_EXIT-1 );
/programs/develop/open watcom/trunk/clib/crt/segdefns.asm
40,17 → 40,13
 
assume nothing
 
extrn _cstart_ : near
extrn __STACKLOW : near
extrn __STACKTOP : near
if COMP_CFG_COFF
DGROUP group _NULL,_AFTERNULL,CONST,_DATA,DATA,_BSS,STACK
else
ifdef __LINUX__
DGROUP group _NULL,_AFTERNULL,CONST,_DATA,DATA,TIB,TI,TIE,XIB,XI,XIE,YIB,YI,YIE,_BSS
else
DGROUP group _NULL,_AFTERNULL,CONST,_DATA,DATA,_BSS,STACK,TIB,TI,TIE,XIB,XI,XIE,YIB,YI,YIE
endif
endif
 
DGROUP group _NULL,_AFTERNULL,CONST,_DATA,DATA,TIB,TI,TIE,XIB,XI,XIE,YIB,YI,YIE,_IEND,_BSS,STACK,MEMSIZE
 
; this guarantees that no function pointer will equal NULL
; (WLINK will keep segment 'BEGTEXT' in front)
; This segment must be at least 4 bytes in size to avoid confusing the
59,6 → 55,16
BEGTEXT segment use32 word public 'CODE'
assume cs:BEGTEXT
forever label near
 
db 'MENUET01'
dd 0x0001
dd offset _cstart_
dd offset ___iend
dd offset MEMSIZE
dd offset MEMSIZE
dd offset ___cmdline
dd offset ___pgmname
int 3h
jmp short forever
; NOTE that __begtext needs to be at offset 3
123,17 → 129,31
DATA segment word public 'DATA'
DATA ends
 
_IEND segment word public 'IEND'
___iend label byte
_IEND ends
 
_BSS segment word public 'BSS'
 
public ___cmdline
public ___pgmname
___cmdline db 256 dup(?) ; pointer to raw command line
___pgmname db 1024 dup (?) ; pointer to program name (for argv[0])
 
_BSS ends
 
ifndef __LINUX__
STACK_SIZE equ 4096h
STACK segment para stack 'STACK'
 
STACK segment para stack 'STACK'
db (STACK_SIZE) dup(?)
___stack_low label byte
public ___stack_low
 
STACK ends
endif
 
MEMSIZE segment para stack 'STACK'
MEMSIZE ends
 
 
_TEXT segment use32 word public 'CODE'
_TEXT ends
 
/programs/develop/open watcom/trunk/clib/fpu/chipa32.asm
53,15 → 53,10
_TEXT SEGMENT PARA PUBLIC USE32 'CODE'
_TEXT ENDS
 
CONST SEGMENT DWORD PUBLIC USE32 'DATA'
CONST ENDS
 
CONST2 SEGMENT DWORD PUBLIC USE32 'DATA'
CONST2 ENDS
_DATA SEGMENT DWORD PUBLIC USE32 'DATA'
 
DATA32 SEGMENT DWORD PUBLIC USE32 'DATA'
 
 
Y EQU 0
X EQU 12
PREV_CW EQU 24
145,19 → 140,19
dd 0AC526641H, 0C0CE85B8H, 000003FFEH, 000000000H
dd 02168C235H, 0C90FDAA2H, 000003FFEH, 000000000H
 
DATA32 ENDS
_DATA ENDS
 
BSS32 SEGMENT DWORD PUBLIC USE32 'BSS'
BSS32 ENDS
_BSS SEGMENT DWORD PUBLIC USE32 'BSS'
_BSS ENDS
 
 
EXTRN __fdiv_fpr:NEAR
 
DGROUP GROUP CONST,CONST2,DATA32,BSS32
DGROUP GROUP _DATA,_BSS
 
 
_TEXT SEGMENT PARA PUBLIC USE32 'CODE'
ASSUME CS:_TEXT,DS:DGROUP,ES:DGROUP, SS:nothing
ASSUME CS:_TEXT,DS:DGROUP,ES:DGROUP, SS:DGROUP
public __fpatan_chk
 
defpe __fpatan_chk
/programs/develop/open watcom/trunk/clib/fpu/chipd32.asm
167,19 → 167,19
_TEXT SEGMENT DWORD USE32 PUBLIC 'CODE'
_TEXT ENDS
 
DATA32 SEGMENT DWORD USE32 PUBLIC 'DATA'
DATA32 ENDS
_DATA SEGMENT DWORD USE32 PUBLIC 'DATA'
_DATA ENDS
 
CONST32 SEGMENT DWORD USE32 PUBLIC 'CONST'
CONST32 ENDS
CONST SEGMENT DWORD USE32 PUBLIC 'DATA'
CONST ENDS
 
BSS32 SEGMENT DWORD USE32 PUBLIC 'BSS'
BSS32 ENDS
_BSS SEGMENT DWORD USE32 PUBLIC 'BSS'
_BSS ENDS
 
DGROUP GROUP CONST32, BSS32, DATA32
DGROUP GROUP CONST,_DATA,_BSS
 
 
DATA32 SEGMENT DWORD USE32 PUBLIC 'DATA'
_DATA SEGMENT DWORD USE32 PUBLIC 'DATA'
 
fdiv_risc_table DB 0, 1, 0, 0, 4, 0, 0, 7, 0, 0, 10, 0, 0, 13, 0, 0
fdiv_scale_1 DD 03f700000h ;0.9375
252,7 → 252,7
DD offset label62
DD offset label63
 
DATA32 ENDS
_DATA ENDS
 
 
_TEXT SEGMENT DWORD USE32 PUBLIC 'CODE'
/programs/develop/open watcom/trunk/clib/fpu/chipr32.asm
63,7 → 63,7
ENDM
 
 
DATA32 SEGMENT DWORD USE32 PUBLIC 'DATA'
_DATA SEGMENT DWORD USE32 PUBLIC 'DATA'
 
;
; Stack variables for remainder routines.
123,26 → 123,18
ENV_SIZE EQU 28
 
 
DATA32 ENDS
_DATA ENDS
 
_TEXT SEGMENT DWORD USE32 PUBLIC 'CODE'
_TEXT ENDS
 
DATA32 SEGMENT DWORD USE32 PUBLIC 'DATA'
DATA32 ENDS
 
CONST32 SEGMENT DWORD USE32 PUBLIC 'CONST'
CONST32 ENDS
DGROUP GROUP _DATA
 
BSS32 SEGMENT DWORD USE32 PUBLIC 'BSS'
BSS32 ENDS
 
DGROUP GROUP CONST32, BSS32, DATA32
 
_TEXT SEGMENT DWORD USE32 PUBLIC 'CODE'
 
 
CODE32 SEGMENT DWORD USE32 PUBLIC 'CODE'
 
assume cs:_TEXT, ds:DGROUP, es:DGROUP, ss:nothing
 
 
847,5 → 839,5
fpinit ENDP
endif
 
CODE32 ENDS
_TEXT ENDS
END
/programs/develop/open watcom/trunk/clib/h/kolibri.h
23,6 → 23,7
#define FILE_NOT_FOUND 5
#define FILE_EOF 6
 
#if 0
 
typedef unsigned int DWORD;
typedef unsigned short int WORD;
62,10 → 63,6
DWORD size_high;
} FILEINFO;
 
void _stdcall InitHeap(int heap_size);
void* _stdcall UserAlloc(int size);
int _stdcall UserFree(void* p);
void _stdcall GetNotify(void *event);
 
void _stdcall CreateThread(void *fn, char *p_stack);
85,7 → 82,8
 
int _cdecl get_button_id();
 
void delay(int val);
//void delay(int val);
 
int wait_for_event(int time);
int wait_for_event_infinite();
void BeginDraw(void);
99,6 → 97,37
void _stdcall draw_bar(int x, int y, int xsize, int ysize, int color);
void _stdcall write_text(int x,int y,int color,char* text,int len);
 
#endif
 
unsigned init_heap(void);
 
#pragma aux init_heap = \
"mov EAX, 68" \
"mov EBX, 11" \
"int 0x40" \
value [EAX] \
modify [ EBX ];
 
void *user_alloc(unsigned size);
 
void *user_alloc(unsigned size);
 
#pragma aux user_alloc = \
"mov EAX, 68" \
"mov EBX, 12" \
"int 0x40" \
parm [ ECX ] value [EAX] \
modify [ EBX ];
 
unsigned user_free(void *);
 
#pragma aux user_free = \
"mov EAX, 68" \
"mov EBX, 13" \
"int 0x40" \
parm [ ECX ] value [EAX] \
modify [ EBX ];
 
#ifdef __cplusplus
extern "C"
}
/programs/develop/open watcom/trunk/clib/h/locales.h
0,0 → 1,37
/****************************************************************************
*
* 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!
*
****************************************************************************/
 
 
/* locales.h */
 
#define C_LOCALE 0
#define NATIVE_LOCALE 1
#define INVALID_LOCALE 2
/programs/develop/open watcom/trunk/clib/h/localset.h
0,0 → 1,36
/****************************************************************************
*
* 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!
*
****************************************************************************/
 
 
 
extern char _LocaleSetting[];
#define _INITLOCALESETTING
#define _LOCALESETTING _LocaleSetting
/programs/develop/open watcom/trunk/clib/h/variety.h
291,3 → 291,6
#endif
 
#endif
 
#undef _WCRTLINKD
#define _WCRTLINKD
/programs/develop/open watcom/trunk/clib/handleio/creat.c
0,0 → 1,66
/****************************************************************************
*
* 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: Platform independent implementation of creat().
*
****************************************************************************/
 
 
#include "variety.h"
#include "widechar.h"
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "seterrno.h"
 
 
/* file attributes */
#define _A_RDONLY 0x01
 
 
_WCRTLINK int __F_NAME(creat,_wcreat)( const CHAR_TYPE *name, mode_t pmode )
{
#ifndef __NETWARE__
return( __F_NAME(open,_wopen)( name, O_RDWR | O_CREAT | O_TRUNC, pmode ) );
#else
int acc;
 
acc = O_CREAT | O_TRUNC;
if( (pmode & S_IWRITE) && (pmode & S_IREAD) ) {
acc |= O_RDWR;
} else if( pmode & S_IWRITE ) {
acc |= O_WRONLY;
} else if( pmode & S_IREAD ) {
acc |= O_RDONLY;
} else if( !pmode ) {
acc |= O_RDWR;
}
return( __F_NAME(open,_wopen)( name, acc, pmode ) );
#endif
}
/programs/develop/open watcom/trunk/clib/handleio/eof.c
0,0 → 1,56
/****************************************************************************
*
* 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!
*
****************************************************************************/
 
 
#include "variety.h"
#include <stdio.h>
#include <unistd.h>
#include "rtcheck.h"
 
extern long filelength(int);
extern long tell(int);
 
 
_WCRTLINK int eof( int handle ) /* determine if at EOF */
{
long current_posn, file_len;
 
__handle_check( handle, -1 );
file_len = filelength( handle );
if( file_len == -1L )
return( -1 );
current_posn = tell( handle );
if( current_posn == -1L )
return( -1 );
if( current_posn == file_len )
return( 1 );
return( 0 );
}
/programs/develop/open watcom/trunk/clib/heap/grownear.c
29,7 → 29,6
****************************************************************************/
 
 
//#include "dll.h" // needs to be first
#include "variety.h"
#include <stddef.h>
#include <stdlib.h>
45,9 → 44,7
// #include "tinyio.h"
#endif
#if defined(__WINDOWS_286__) || defined(__NT__)
void* _stdcall UserAlloc(int size);
 
// #include "windows.h"
#include "kolibri.h"
#endif
#if defined(__OS2__)
// #include <wos2.h>
404,7 → 401,7
#elif defined(__NT__)
// brk_value = (unsigned) VirtualAlloc( NULL, amount, MEM_COMMIT,
// PAGE_EXECUTE_READWRITE );
brk_value = (unsigned) UserAlloc (amount );
brk_value = (unsigned) user_alloc(amount );
//brk_value = (unsigned) LocalAlloc( LMEM_FIXED, amount );
if( brk_value == 0 ) {
/programs/develop/open watcom/trunk/clib/heap/nheapmin.c
29,7 → 29,6
****************************************************************************/
 
 
//#include "dll.h" // needs to be first
#include "variety.h"
#include <stddef.h>
#include <stdlib.h>
40,8 → 39,7
// #include "extender.h"
#endif
#if defined(__WINDOWS_286__) || defined(__NT__)
int _stdcall UserFree(void* p);
// #include "windows.h"
#include "kolibri.h"
#endif
#if defined(__OS2__)
// #include <wos2.h>
77,42 → 75,7
defined(__WINDOWS_386__) || \
defined(__NT__) || \
defined(__CALL21__)
static int __ReturnMemToSystem( mheapptr mhp )
{
mheapptr pnext;
 
pnext = mhp->next;
#if defined(__WARP__)
if( DosFreeMem( (PBYTE)mhp ) ) return( -1 );
#elif defined(__NT__)
//if( LocalFree( (HLOCAL)mhp ) != NULL ) return( -1 );
// if (!VirtualFree(mhp, 0, MEM_RELEASE))
// return -1;
if(!UserFree(mhp))
return -1;
#elif defined(__WINDOWS_386__)
if( DPMIFree( (unsigned long)mhp ) != 0 ) return( -1 );
#elif defined(__WINDOWS_286__)
if( LocalFree( (HLOCAL)mhp ) != NULL ) return( -1 );
#elif defined(__CALL21__)
// No way to free storage under OSI
if( mhp ) return( -1 );
#endif
if( __MiniHeapRover == mhp ) { // Update rovers
if( pnext ) {
__MiniHeapRover = pnext;
} else {
__MiniHeapRover = __nheapbeg;
__LargestSizeB4MiniHeapRover = 0;
}
}
if( __MiniHeapFreeRover == mhp ) {
__MiniHeapFreeRover = 0;
}
return( 0 ); // success
}
 
static void __ReleaseMiniHeap( mheapptr mhp )
{
mheapptr pprev;
120,7 → 83,7
 
pprev = mhp->prev;
pnext = mhp->next;
if( __ReturnMemToSystem( mhp ) == 0 ) {
if( user_free( mhp ) == 1 ) {
if( pprev == NULL ) {
__nheapbeg = pnext;
} else {
/programs/develop/open watcom/trunk/clib/heap/sbrkwnt.c
35,11 → 35,10
#include <stdlib.h>
#include <errno.h>
#include <dos.h>
//#include <windows.h>
#include "kolibri.h"
 
void* _stdcall UserAlloc(int size);
void* user_alloc(unsigned size);
 
 
extern unsigned _curbrk;
extern unsigned _STACKTOP;
 
52,7 → 51,7
increment = ( increment + 0x0fff ) & ~0x0fff;
//p = LocalAlloc( LMEM_FIXED, increment );
//p = VirtualAlloc(NULL, increment, MEM_COMMIT,PAGE_EXECUTE_READWRITE);
p = UserAlloc(increment);
p = user_alloc(increment);
if( p != NULL ) return( p );
errno = ENOMEM;
}
/programs/develop/open watcom/trunk/clib/misc/locale.c
0,0 → 1,46
/****************************************************************************
*
* 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!
*
****************************************************************************/
 
 
#include "variety.h"
#include "locales.h"
 
char _LocaleSetting[] = {
/* QNX */
C_LOCALE, /* LC_TYPE */
C_LOCALE, /* LC_NUMERIC */
C_LOCALE, /* LC_TIME */
C_LOCALE, /* LC_COLLATE */
C_LOCALE, /* LC_MONETARY */
C_LOCALE, /* LC_MESSAGES */
C_LOCALE /* LC_ALL */
};
 
/programs/develop/open watcom/trunk/clib/misc/setlocal.c
0,0 → 1,89
/****************************************************************************
*
* 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!
*
****************************************************************************/
 
 
#include "variety.h"
#include "widechar.h"
#include <stdio.h>
#include <string.h>
#include <locale.h>
#include "locales.h"
#include "localset.h"
 
#ifdef __WIDECHAR__
static wchar_t *ValidLocales[] = {
L"C", /* C_LOCALE */
L"", /* NATIVE_LOCALE */
NULL /* INVALID_LOCALE */
};
#else
static char *ValidLocales[] = {
"C", /* C_LOCALE */
"", /* NATIVE_LOCALE */
NULL /* INVALID_LOCALE */
};
#endif
 
 
_WCRTLINK CHAR_TYPE *__F_NAME(setlocale,_wsetlocale)( int category, CHAR_TYPE const *locale )
{
register int i;
 
_INITLOCALESETTING
if( category < LC_CTYPE || category > LC_ALL ) {
return( NULL );
}
if( locale == NULL ) {
i = _LOCALESETTING[category];
} else {
i = C_LOCALE;
if( *locale != __F_NAME('\0',L'\0') ) {
for( ; ValidLocales[i]; ++i ) {
if( __F_NAME(strcmp,wcscmp)( locale, ValidLocales[i] ) == 0 ) break;
}
}
if( i != INVALID_LOCALE ) {
_LOCALESETTING[category] = i;
if( category == LC_ALL ) {
_LOCALESETTING[LC_COLLATE] = i;
_LOCALESETTING[LC_CTYPE] = i;
_LOCALESETTING[LC_NUMERIC] = i;
_LOCALESETTING[LC_TIME] = i;
_LOCALESETTING[LC_MONETARY] = i;
#if defined( __UNIX__ )
_LOCALESETTING[LC_MESSAGES] = i;
#endif
}
}
}
return( ValidLocales[ i ] );
}
 
/programs/develop/open watcom/trunk/clib.wpj
6,8 → 6,8
WRect
 
370
10240
9870
10304
9950
2
MProject
3
42,8 → 42,8
WFileName
10
clib_r.tgt
10
42
 
 
11
VComponent
12
59,5 → 59,5
7
crt.tgt
 
17
20
8
/programs/develop/open watcom/trunk/clib_r.tgt
58,7 → 58,7
 
14
WPickList
332
341
15
MItem
5
163,12 → 163,12
 
-1
1
1
 
 
41
MItem
23
CLIB\CGSUPP\7fu8386.asm
CLIB\ALIAS\_icstrdu.asm
42
WString
6
186,7 → 186,7
45
MItem
23
CLIB\CGSUPP\7u8f386.asm
CLIB\ALIAS\_istrcmp.asm
46
WString
6
203,8 → 203,8
 
49
MItem
22
CLIB\CGSUPP\__copy.asm
23
CLIB\ALIAS\_istrdup.asm
50
WString
6
221,8 → 221,8
 
53
MItem
22
CLIB\CGSUPP\__stos.asm
23
CLIB\ALIAS\_istricm.asm
54
WString
6
239,8 → 239,8
 
57
MItem
24
CLIB\CGSUPP\amodf386.asm
23
CLIB\CGSUPP\7fu8386.asm
58
WString
6
257,8 → 257,8
 
61
MItem
24
CLIB\CGSUPP\bufld386.asm
23
CLIB\CGSUPP\7u8f386.asm
62
WString
6
276,7 → 276,7
65
MItem
22
CLIB\CGSUPP\div386.asm
CLIB\CGSUPP\__copy.asm
66
WString
6
294,7 → 294,7
69
MItem
22
CLIB\CGSUPP\fdc386.asm
CLIB\CGSUPP\__stos.asm
70
WString
6
311,8 → 311,8
 
73
MItem
23
CLIB\CGSUPP\fdfs386.asm
24
CLIB\CGSUPP\amodf386.asm
74
WString
6
329,8 → 329,8
 
77
MItem
23
CLIB\CGSUPP\fdi4386.asm
24
CLIB\CGSUPP\bufld386.asm
78
WString
6
347,8 → 347,8
 
81
MItem
23
CLIB\CGSUPP\fdi8386.asm
22
CLIB\CGSUPP\div386.asm
82
WString
6
366,7 → 366,7
85
MItem
22
CLIB\CGSUPP\fdmath.asm
CLIB\CGSUPP\fdc386.asm
86
WString
6
383,8 → 383,8
 
89
MItem
24
CLIB\CGSUPP\fdmth386.asm
23
CLIB\CGSUPP\fdfs386.asm
90
WString
6
401,8 → 401,8
 
93
MItem
22
CLIB\CGSUPP\fdn386.asm
23
CLIB\CGSUPP\fdi4386.asm
94
WString
6
419,8 → 419,8
 
97
MItem
24
CLIB\CGSUPP\fprem386.asm
23
CLIB\CGSUPP\fdi8386.asm
98
WString
6
438,7 → 438,7
101
MItem
22
CLIB\CGSUPP\fsc386.asm
CLIB\CGSUPP\fdmath.asm
102
WString
6
455,8 → 455,8
 
105
MItem
23
CLIB\CGSUPP\fsfd386.asm
24
CLIB\CGSUPP\fdmth386.asm
106
WString
6
473,8 → 473,8
 
109
MItem
23
CLIB\CGSUPP\fsi4386.asm
22
CLIB\CGSUPP\fdn386.asm
110
WString
6
491,8 → 491,8
 
113
MItem
23
CLIB\CGSUPP\fsi8386.asm
24
CLIB\CGSUPP\fprem386.asm
114
WString
6
509,8 → 509,8
 
117
MItem
24
CLIB\CGSUPP\fsmth386.asm
22
CLIB\CGSUPP\fsc386.asm
118
WString
6
527,8 → 527,8
 
121
MItem
22
CLIB\CGSUPP\fsn386.asm
23
CLIB\CGSUPP\fsfd386.asm
122
WString
6
545,8 → 545,8
 
125
MItem
24
CLIB\CGSUPP\fstat386.asm
23
CLIB\CGSUPP\fsi4386.asm
126
WString
6
564,7 → 564,7
129
MItem
23
CLIB\CGSUPP\i4fd386.asm
CLIB\CGSUPP\fsi8386.asm
130
WString
6
581,8 → 581,8
 
133
MItem
23
CLIB\CGSUPP\i4fs386.asm
24
CLIB\CGSUPP\fsmth386.asm
134
WString
6
599,8 → 599,8
 
137
MItem
19
CLIB\CGSUPP\i8d.asm
22
CLIB\CGSUPP\fsn386.asm
138
WString
6
617,8 → 617,8
 
141
MItem
23
CLIB\CGSUPP\i8fd386.asm
24
CLIB\CGSUPP\fstat386.asm
142
WString
6
636,7 → 636,7
145
MItem
23
CLIB\CGSUPP\i8fs386.asm
CLIB\CGSUPP\i4fd386.asm
146
WString
6
653,8 → 653,8
 
149
MItem
22
CLIB\CGSUPP\i8m386.asm
23
CLIB\CGSUPP\i4fs386.asm
150
WString
6
671,8 → 671,8
 
153
MItem
23
CLIB\CGSUPP\i8rs386.asm
19
CLIB\CGSUPP\i8d.asm
154
WString
6
690,7 → 690,7
157
MItem
23
CLIB\CGSUPP\ldiv386.asm
CLIB\CGSUPP\i8fd386.asm
158
WString
6
707,8 → 707,8
 
161
MItem
24
CLIB\CGSUPP\lldiv386.asm
23
CLIB\CGSUPP\i8fs386.asm
162
WString
6
725,8 → 725,8
 
165
MItem
24
CLIB\CONVERT\fdmd386.asm
22
CLIB\CGSUPP\i8m386.asm
166
WString
6
743,8 → 743,8
 
169
MItem
24
CLIB\CONVERT\fsms386.asm
23
CLIB\CGSUPP\i8rs386.asm
170
WString
6
761,8 → 761,8
 
173
MItem
24
CLIB\CONVERT\mdfd386.asm
23
CLIB\CGSUPP\ldiv386.asm
174
WString
6
780,7 → 780,7
177
MItem
24
CLIB\CONVERT\msfs386.asm
CLIB\CGSUPP\lldiv386.asm
178
WString
6
797,8 → 797,8
 
181
MItem
20
CLIB\FPU\chipa32.asm
24
CLIB\CONVERT\fdmd386.asm
182
WString
6
815,8 → 815,8
 
185
MItem
20
CLIB\FPU\chipd32.asm
24
CLIB\CONVERT\fsms386.asm
186
WString
6
833,8 → 833,8
 
189
MItem
20
CLIB\FPU\chipr32.asm
24
CLIB\CONVERT\mdfd386.asm
190
WString
6
851,8 → 851,8
 
193
MItem
20
CLIB\FPU\chipt32.asm
24
CLIB\CONVERT\msfs386.asm
194
WString
6
870,7 → 870,7
197
MItem
20
CLIB\FPU\chipw32.asm
CLIB\FPU\chipa32.asm
198
WString
6
887,8 → 887,8
 
201
MItem
19
CLIB\FPU\fpe387.asm
20
CLIB\FPU\chipd32.asm
202
WString
6
906,7 → 906,7
205
MItem
20
CLIB\FPU\fpeinth.asm
CLIB\FPU\chipr32.asm
206
WString
6
923,8 → 923,8
 
209
MItem
21
CLIB\FPU\ini87386.asm
20
CLIB\FPU\chipt32.asm
210
WString
6
941,8 → 941,8
 
213
MItem
22
CLIB\INTEL\chipvar.asm
20
CLIB\FPU\chipw32.asm
214
WString
6
959,8 → 959,8
 
217
MItem
23
CLIB\INTEL\i64ts386.asm
19
CLIB\FPU\fpe387.asm
218
WString
6
977,8 → 977,8
 
221
MItem
22
CLIB\STRING\cmp386.asm
20
CLIB\FPU\fpeinth.asm
222
WString
6
995,318 → 995,318
 
225
MItem
3
*.c
21
CLIB\FPU\ini87386.asm
226
WString
4
COBJ
6
ASMOBJ
227
WVList
18
 
228
MVState
WVList
 
15
1
1
 
229
WString
3
WCC
MItem
22
CLIB\INTEL\chipvar.asm
230
WString
25
n????Include directories:
1
6
ASMOBJ
231
WString
80
$(%watcom)\h;$(%watcom)\h\nt; "E:\Kos\programs\develop\open watcom\trunk\clib\h"
WVList
 
232
MRState
WVList
 
15
1
1
 
233
WString
3
WCC
MItem
23
CLIB\INTEL\i64ts386.asm
234
WString
27
?????Default byte alignment
6
ASMOBJ
235
WVList
 
236
WVList
 
15
1
1
 
235
MRState
236
237
MItem
22
CLIB\STRING\cmp386.asm
238
WString
6
ASMOBJ
239
WVList
 
240
WVList
 
15
1
1
 
241
MItem
3
*.c
242
WString
4
COBJ
243
WVList
18
244
MVState
245
WString
3
WCC
237
246
WString
21
?????1 byte alignment
25
n????Include directories:
1
1
238
247
WString
80
$(%watcom)\h;$(%watcom)\h\nt; "E:\Kos\programs\develop\open watcom\trunk\clib\h"
 
248
MRState
239
249
WString
3
WCC
240
250
WString
21
?????No optimizations
1
 
241
251
MRState
242
252
WString
3
WCC
243
253
WString
24
?????Space optimizations
27
?????Average space and time
1
1
244
254
MCState
245
255
WString
3
WCC
246
256
WString
33
?????Disable stack depth checking
1
1
247
257
MCState
248
258
WString
3
WCC
249
259
WString
30
?????Call/return optimizations
1
1
250
260
MCState
251
261
WString
3
WCC
252
262
WString
25
?????Relax alias checking
1
1
253
263
MCState
254
264
WString
3
WCC
255
265
WString
27
?????Instruction scheduling
1
1
256
266
MRState
257
267
WString
3
WCC
258
268
WString
29
?????No debugging information
1
1
259
269
MRState
260
270
WString
3
WCC
261
271
WString
24
?????Full debugging info
1
 
262
272
MRState
263
273
WString
3
WCC
264
274
WString
21
?????Compiler default
1
 
265
275
MRState
266
276
WString
3
WCC
267
277
WString
21
?????Compiler default
1
 
268
278
MRState
269
279
WString
3
WCC
270
280
WString
33
?????In-line Pentium instructions
1
1
271
281
MRState
272
282
WString
3
WCC
273
283
WString
21
?????Compiler default
1
 
274
284
MRState
275
285
WString
3
WCC
276
286
WString
29
?????In-line with coprocessor
1
1
277
287
MRState
278
288
WString
3
WCC
279
289
WString
21
??2??32bit Flat model
35
??2??Pentium Register based calling
1
 
280
1
290
MRState
281
291
WString
3
WCC
282
292
WString
22
??2??32bit Small model
39
??2??Pentium Pro Register based calling
1
1
283
WVList
 
-1
1
 
 
284
MItem
20
CLIB\CHAR\chartest.c
285
WString
4
COBJ
286
WVList
 
287
WVList
 
225
1
1
 
288
MItem
19
CLIB\CHAR\isalnum.c
289
WString
4
COBJ
290
WVList
 
291
WVList
 
225
1
1
 
292
MItem
19
CLIB\CHAR\isalpha.c
293
MRState
294
WString
4
COBJ
294
WVList
 
3
WCC
295
WVList
 
225
WString
21
??2??32bit Flat model
1
1
 
296
MItem
19
CLIB\CHAR\isascii.c
MRState
297
WString
4
COBJ
3
WCC
298
WVList
 
WString
22
??2??32bit Small model
1
1
299
WVList
 
225
-1
1
1
 
 
300
MItem
19
CLIB\CHAR\isblank.c
20
CLIB\CHAR\chartest.c
301
WString
4
1317,7 → 1317,7
303
WVList
 
225
241
1
1
 
1324,7 → 1324,7
304
MItem
19
CLIB\CHAR\iscntrl.c
CLIB\CHAR\isalnum.c
305
WString
4
1335,14 → 1335,14
307
WVList
 
225
241
1
1
 
308
MItem
18
CLIB\CHAR\iscsym.c
19
CLIB\CHAR\isalpha.c
309
WString
4
1353,7 → 1353,7
311
WVList
 
225
241
1
1
 
1360,7 → 1360,7
312
MItem
19
CLIB\CHAR\iscsymf.c
CLIB\CHAR\isascii.c
313
WString
4
1371,7 → 1371,7
315
WVList
 
225
241
1
1
 
1378,7 → 1378,7
316
MItem
19
CLIB\CHAR\isdigit.c
CLIB\CHAR\isblank.c
317
WString
4
1389,7 → 1389,7
319
WVList
 
225
241
1
1
 
1396,7 → 1396,7
320
MItem
19
CLIB\CHAR\isgraph.c
CLIB\CHAR\iscntrl.c
321
WString
4
1407,14 → 1407,14
323
WVList
 
225
241
1
1
 
324
MItem
19
CLIB\CHAR\islower.c
18
CLIB\CHAR\iscsym.c
325
WString
4
1425,7 → 1425,7
327
WVList
 
225
241
1
1
 
1432,7 → 1432,7
328
MItem
19
CLIB\CHAR\isprint.c
CLIB\CHAR\iscsymf.c
329
WString
4
1443,7 → 1443,7
331
WVList
 
225
241
1
1
 
1450,7 → 1450,7
332
MItem
19
CLIB\CHAR\ispunct.c
CLIB\CHAR\isdigit.c
333
WString
4
1461,7 → 1461,7
335
WVList
 
225
241
1
1
 
1468,7 → 1468,7
336
MItem
19
CLIB\CHAR\isspace.c
CLIB\CHAR\isgraph.c
337
WString
4
1479,7 → 1479,7
339
WVList
 
225
241
1
1
 
1486,7 → 1486,7
340
MItem
19
CLIB\CHAR\istable.c
CLIB\CHAR\islower.c
341
WString
4
1497,7 → 1497,7
343
WVList
 
225
241
1
1
 
1504,7 → 1504,7
344
MItem
19
CLIB\CHAR\isupper.c
CLIB\CHAR\isprint.c
345
WString
4
1515,14 → 1515,14
347
WVList
 
225
241
1
1
 
348
MItem
20
CLIB\CHAR\iswctype.c
19
CLIB\CHAR\ispunct.c
349
WString
4
1533,14 → 1533,14
351
WVList
 
225
241
1
1
 
352
MItem
20
CLIB\CHAR\isxdigit.c
19
CLIB\CHAR\isspace.c
353
WString
4
1551,7 → 1551,7
355
WVList
 
225
241
1
1
 
1558,7 → 1558,7
356
MItem
19
CLIB\CHAR\tolower.c
CLIB\CHAR\istable.c
357
WString
4
1569,7 → 1569,7
359
WVList
 
225
241
1
1
 
1576,7 → 1576,7
360
MItem
19
CLIB\CHAR\toupper.c
CLIB\CHAR\isupper.c
361
WString
4
1587,7 → 1587,7
363
WVList
 
225
241
1
1
 
1594,7 → 1594,7
364
MItem
20
CLIB\CHAR\towctrns.c
CLIB\CHAR\iswctype.c
365
WString
4
1605,14 → 1605,14
367
WVList
 
225
241
1
1
 
368
MItem
23
CLIB\CONVERT\alphabet.c
20
CLIB\CHAR\isxdigit.c
369
WString
4
1623,7 → 1623,7
371
WVList
 
225
241
1
1
 
1630,7 → 1630,7
372
MItem
19
CLIB\CONVERT\atoi.c
CLIB\CHAR\tolower.c
373
WString
4
1641,7 → 1641,7
375
WVList
 
225
241
1
1
 
1648,7 → 1648,7
376
MItem
19
CLIB\CONVERT\atol.c
CLIB\CHAR\toupper.c
377
WString
4
1659,7 → 1659,7
379
WVList
 
225
241
1
1
 
1666,7 → 1666,7
380
MItem
20
CLIB\CONVERT\atoll.c
CLIB\CHAR\towctrns.c
381
WString
4
1677,14 → 1677,14
383
WVList
 
225
241
1
1
 
384
MItem
19
CLIB\CONVERT\itoa.c
23
CLIB\CONVERT\alphabet.c
385
WString
4
1695,14 → 1695,14
387
WVList
 
225
241
1
1
 
388
MItem
20
CLIB\CONVERT\lltoa.c
19
CLIB\CONVERT\atoi.c
389
WString
4
1713,7 → 1713,7
391
WVList
 
225
241
1
1
 
1720,7 → 1720,7
392
MItem
19
CLIB\CONVERT\ltoa.c
CLIB\CONVERT\atol.c
393
WString
4
1731,14 → 1731,14
395
WVList
 
225
241
1
1
 
396
MItem
21
CLIB\CONVERT\strtol.c
20
CLIB\CONVERT\atoll.c
397
WString
4
1749,14 → 1749,14
399
WVList
 
225
241
1
1
 
400
MItem
22
CLIB\CONVERT\strtoll.c
19
CLIB\CONVERT\itoa.c
401
WString
4
1767,14 → 1767,14
403
WVList
 
225
241
1
1
 
404
MItem
22
CLIB\DIRECT\gtcwdwnt.c
20
CLIB\CONVERT\lltoa.c
405
WString
4
1785,14 → 1785,14
407
WVList
 
225
241
1
1
 
408
MItem
23
CLIB\ENVIRON\clearenv.c
19
CLIB\CONVERT\ltoa.c
409
WString
4
1803,14 → 1803,14
411
WVList
 
225
241
1
1
 
412
MItem
22
CLIB\ENVIRON\environ.c
21
CLIB\CONVERT\strtol.c
413
WString
4
1821,14 → 1821,14
415
WVList
 
225
241
1
1
 
416
MItem
21
CLIB\ENVIRON\getenv.c
22
CLIB\CONVERT\strtoll.c
417
WString
4
1839,14 → 1839,14
419
WVList
 
225
241
1
1
 
420
MItem
20
CLIB\ENVIRON\gtcmd.c
22
CLIB\DIRECT\gtcwdwnt.c
421
WString
4
1857,7 → 1857,7
423
WVList
 
225
241
1
1
 
1864,7 → 1864,7
424
MItem
23
CLIB\ENVIRON\isattwnt.c
CLIB\ENVIRON\clearenv.c
425
WString
4
1875,14 → 1875,14
427
WVList
 
225
241
1
1
 
428
MItem
23
CLIB\ENVIRON\searchen.c
22
CLIB\ENVIRON\environ.c
429
WString
4
1893,14 → 1893,14
431
WVList
 
225
241
1
1
 
432
MItem
22
CLIB\ENVIRON\setenvp.c
21
CLIB\ENVIRON\getenv.c
433
WString
4
1911,14 → 1911,14
435
WVList
 
225
241
1
1
 
436
MItem
18
CLIB\FILE\remove.c
20
CLIB\ENVIRON\gtcmd.c
437
WString
4
1929,14 → 1929,14
439
WVList
 
225
241
1
1
 
440
MItem
18
CLIB\FPU\cntrl87.c
23
CLIB\ENVIRON\isattwnt.c
441
WString
4
1947,14 → 1947,14
443
WVList
 
225
241
1
1
 
444
MItem
18
CLIB\FPU\cntrlfp.c
23
CLIB\ENVIRON\searchen.c
445
WString
4
1965,14 → 1965,14
447
WVList
 
225
241
1
1
 
448
MItem
19
CLIB\FPU\fclex387.c
22
CLIB\ENVIRON\setenvp.c
449
WString
4
1983,14 → 1983,14
451
WVList
 
225
241
1
1
 
452
MItem
24
CLIB\HANDLEIO\_clsewnt.c
18
CLIB\FILE\remove.c
453
WString
4
2001,14 → 2001,14
455
WVList
 
225
241
1
1
 
456
MItem
21
CLIB\HANDLEIO\close.c
18
CLIB\FPU\cntrl87.c
457
WString
4
2019,14 → 2019,14
459
WVList
 
225
241
1
1
 
460
MItem
23
CLIB\HANDLEIO\filelen.c
18
CLIB\FPU\cntrlfp.c
461
WString
4
2037,14 → 2037,14
463
WVList
 
225
241
1
1
 
464
MItem
21
CLIB\HANDLEIO\fsync.c
19
CLIB\FPU\fclex387.c
465
WString
4
2055,14 → 2055,14
467
WVList
 
225
241
1
1
 
468
MItem
22
CLIB\HANDLEIO\hdlman.c
24
CLIB\HANDLEIO\_clsewnt.c
469
WString
4
2073,14 → 2073,14
471
WVList
 
225
241
1
1
 
472
MItem
22
CLIB\HANDLEIO\iomode.c
21
CLIB\HANDLEIO\close.c
473
WString
4
2091,14 → 2091,14
475
WVList
 
225
241
1
1
 
476
MItem
24
CLIB\HANDLEIO\iomodtty.c
21
CLIB\HANDLEIO\creat.c
477
WString
4
2109,14 → 2109,14
479
WVList
 
225
241
1
1
 
480
MItem
21
CLIB\HANDLEIO\lseek.c
19
CLIB\HANDLEIO\eof.c
481
WString
4
2127,14 → 2127,14
483
WVList
 
225
241
1
1
 
484
MItem
24
CLIB\HANDLEIO\lseekwnt.c
23
CLIB\HANDLEIO\filelen.c
485
WString
4
2145,14 → 2145,14
487
WVList
 
225
241
1
1
 
488
MItem
24
CLIB\HANDLEIO\openklbr.c
21
CLIB\HANDLEIO\fsync.c
489
WString
4
2163,14 → 2163,14
491
WVList
 
225
241
1
1
 
492
MItem
21
CLIB\HANDLEIO\qread.c
22
CLIB\HANDLEIO\hdlman.c
493
WString
4
2181,14 → 2181,14
495
WVList
 
225
241
1
1
 
496
MItem
21
CLIB\HANDLEIO\qwrit.c
22
CLIB\HANDLEIO\iomode.c
497
WString
4
2199,14 → 2199,14
499
WVList
 
225
241
1
1
 
500
MItem
20
CLIB\HANDLEIO\read.c
24
CLIB\HANDLEIO\iomodtty.c
501
WString
4
2217,14 → 2217,14
503
WVList
 
225
241
1
1
 
504
MItem
24
CLIB\HANDLEIO\stiomode.c
21
CLIB\HANDLEIO\lseek.c
505
WString
4
2235,14 → 2235,14
507
WVList
 
225
241
1
1
 
508
MItem
20
CLIB\HANDLEIO\tell.c
24
CLIB\HANDLEIO\lseekwnt.c
509
WString
4
2253,7 → 2253,7
511
WVList
 
225
241
1
1
 
2260,7 → 2260,7
512
MItem
24
CLIB\HANDLEIO\unlnkwnt.c
CLIB\HANDLEIO\openklbr.c
513
WString
4
2271,7 → 2271,7
515
WVList
 
225
241
1
1
 
2278,7 → 2278,7
516
MItem
21
CLIB\HANDLEIO\write.c
CLIB\HANDLEIO\qread.c
517
WString
4
2289,14 → 2289,14
519
WVList
 
225
241
1
1
 
520
MItem
20
CLIB\HEAP\amblksiz.c
21
CLIB\HANDLEIO\qwrit.c
521
WString
4
2307,14 → 2307,14
523
WVList
 
225
241
1
1
 
524
MItem
19
CLIB\HEAP\ambsptr.c
20
CLIB\HANDLEIO\read.c
525
WString
4
2325,14 → 2325,14
527
WVList
 
225
241
1
1
 
528
MItem
18
CLIB\HEAP\calloc.c
24
CLIB\HANDLEIO\stiomode.c
529
WString
4
2343,14 → 2343,14
531
WVList
 
225
241
1
1
 
532
MItem
18
CLIB\HEAP\freect.c
20
CLIB\HANDLEIO\tell.c
533
WString
4
2361,14 → 2361,14
535
WVList
 
225
241
1
1
 
536
MItem
20
CLIB\HEAP\grownear.c
24
CLIB\HANDLEIO\unlnkwnt.c
537
WString
4
2379,14 → 2379,14
539
WVList
 
225
241
1
1
 
540
MItem
18
CLIB\HEAP\heapen.c
21
CLIB\HANDLEIO\write.c
541
WString
4
2397,7 → 2397,7
543
WVList
 
225
241
1
1
 
2404,7 → 2404,7
544
MItem
20
CLIB\HEAP\heapgrow.c
CLIB\HEAP\amblksiz.c
545
WString
4
2415,14 → 2415,14
547
WVList
 
225
241
1
1
 
548
MItem
15
CLIB\HEAP\mem.c
19
CLIB\HEAP\ambsptr.c
549
WString
4
2433,7 → 2433,7
551
WVList
 
225
241
1
1
 
2440,7 → 2440,7
552
MItem
18
CLIB\HEAP\memavl.c
CLIB\HEAP\calloc.c
553
WString
4
2451,7 → 2451,7
555
WVList
 
225
241
1
1
 
2458,7 → 2458,7
556
MItem
18
CLIB\HEAP\memmax.c
CLIB\HEAP\freect.c
557
WString
4
2469,14 → 2469,14
559
WVList
 
225
241
1
1
 
560
MItem
19
CLIB\HEAP\ncalloc.c
20
CLIB\HEAP\grownear.c
561
WString
4
2487,14 → 2487,14
563
WVList
 
225
241
1
1
 
564
MItem
19
CLIB\HEAP\nexpand.c
18
CLIB\HEAP\heapen.c
565
WString
4
2505,14 → 2505,14
567
WVList
 
225
241
1
1
 
568
MItem
17
CLIB\HEAP\nfree.c
20
CLIB\HEAP\heapgrow.c
569
WString
4
2523,14 → 2523,14
571
WVList
 
225
241
1
1
 
572
MItem
20
CLIB\HEAP\nheapchk.c
15
CLIB\HEAP\mem.c
573
WString
4
2541,14 → 2541,14
575
WVList
 
225
241
1
1
 
576
MItem
20
CLIB\HEAP\nheapmin.c
18
CLIB\HEAP\memavl.c
577
WString
4
2559,14 → 2559,14
579
WVList
 
225
241
1
1
 
580
MItem
20
CLIB\HEAP\nheapset.c
18
CLIB\HEAP\memmax.c
581
WString
4
2577,14 → 2577,14
583
WVList
 
225
241
1
1
 
584
MItem
20
CLIB\HEAP\nheapwal.c
19
CLIB\HEAP\ncalloc.c
585
WString
4
2595,7 → 2595,7
587
WVList
 
225
241
1
1
 
2602,7 → 2602,7
588
MItem
19
CLIB\HEAP\nmalloc.c
CLIB\HEAP\nexpand.c
589
WString
4
2613,14 → 2613,14
591
WVList
 
225
241
1
1
 
592
MItem
20
CLIB\HEAP\nmemneed.c
17
CLIB\HEAP\nfree.c
593
WString
4
2631,14 → 2631,14
595
WVList
 
225
241
1
1
 
596
MItem
18
CLIB\HEAP\nmsize.c
20
CLIB\HEAP\nheapchk.c
597
WString
4
2649,7 → 2649,7
599
WVList
 
225
241
1
1
 
2656,7 → 2656,7
600
MItem
20
CLIB\HEAP\nrealloc.c
CLIB\HEAP\nheapmin.c
601
WString
4
2667,14 → 2667,14
603
WVList
 
225
241
1
1
 
604
MItem
19
CLIB\HEAP\sbrkwnt.c
20
CLIB\HEAP\nheapset.c
605
WString
4
2685,7 → 2685,7
607
WVList
 
225
241
1
1
 
2692,7 → 2692,7
608
MItem
20
CLIB\INTEL\chipbug.c
CLIB\HEAP\nheapwal.c
609
WString
4
2703,14 → 2703,14
611
WVList
 
225
241
1
1
 
612
MItem
21
CLIB\INTEL\grabfp87.c
19
CLIB\HEAP\nmalloc.c
613
WString
4
2721,14 → 2721,14
615
WVList
 
225
241
1
1
 
616
MItem
21
CLIB\INTEL\save8087.c
20
CLIB\HEAP\nmemneed.c
617
WString
4
2739,14 → 2739,14
619
WVList
 
225
241
1
1
 
620
MItem
20
CLIB\INTEL\segread.c
18
CLIB\HEAP\nmsize.c
621
WString
4
2757,14 → 2757,14
623
WVList
 
225
241
1
1
 
624
MItem
21
CLIB\KANJI\mbdtoupp.c
20
CLIB\HEAP\nrealloc.c
625
WString
4
2775,14 → 2775,14
627
WVList
 
225
241
1
1
 
628
MItem
15
CLIB\MATH\abs.c
19
CLIB\HEAP\sbrkwnt.c
629
WString
4
2793,14 → 2793,14
631
WVList
 
225
241
1
1
 
632
MItem
19
CLIB\MATH\hugeval.c
20
CLIB\INTEL\chipbug.c
633
WString
4
2811,14 → 2811,14
635
WVList
 
225
241
1
1
 
636
MItem
19
CLIB\MATH\hvalptr.c
21
CLIB\INTEL\grabfp87.c
637
WString
4
2829,14 → 2829,14
639
WVList
 
225
241
1
1
 
640
MItem
19
CLIB\MATH\imaxabs.c
21
CLIB\INTEL\save8087.c
641
WString
4
2847,14 → 2847,14
643
WVList
 
225
241
1
1
 
644
MItem
19
CLIB\MATH\imaxdiv.c
20
CLIB\INTEL\segread.c
645
WString
4
2865,14 → 2865,14
647
WVList
 
225
241
1
1
 
648
MItem
16
CLIB\MATH\labs.c
21
CLIB\KANJI\mbdtoupp.c
649
WString
4
2883,14 → 2883,14
651
WVList
 
225
241
1
1
 
652
MItem
17
CLIB\MATH\llabs.c
15
CLIB\MATH\abs.c
653
WString
4
2901,14 → 2901,14
655
WVList
 
225
241
1
1
 
656
MItem
15
CLIB\MATH\max.c
19
CLIB\MATH\hugeval.c
657
WString
4
2919,14 → 2919,14
659
WVList
 
225
241
1
1
 
660
MItem
15
CLIB\MATH\min.c
19
CLIB\MATH\hvalptr.c
661
WString
4
2937,14 → 2937,14
663
WVList
 
225
241
1
1
 
664
MItem
16
CLIB\MATH\rand.c
19
CLIB\MATH\imaxabs.c
665
WString
4
2955,14 → 2955,14
667
WVList
 
225
241
1
1
 
668
MItem
21
CLIB\MBYTE\mbcupper.c
19
CLIB\MATH\imaxdiv.c
669
WString
4
2973,14 → 2973,14
671
WVList
 
225
241
1
1
 
672
MItem
19
CLIB\MBYTE\mbinit.c
16
CLIB\MATH\labs.c
673
WString
4
2991,14 → 2991,14
675
WVList
 
225
241
1
1
 
676
MItem
21
CLIB\MBYTE\mbisdbcs.c
17
CLIB\MATH\llabs.c
677
WString
4
3009,14 → 3009,14
679
WVList
 
225
241
1
1
 
680
MItem
21
CLIB\MBYTE\mbislead.c
15
CLIB\MATH\max.c
681
WString
4
3027,14 → 3027,14
683
WVList
 
225
241
1
1
 
684
MItem
19
CLIB\MBYTE\mbsinc.c
15
CLIB\MATH\min.c
685
WString
4
3045,14 → 3045,14
687
WVList
 
225
241
1
1
 
688
MItem
21
CLIB\MBYTE\mbsnextc.c
16
CLIB\MATH\rand.c
689
WString
4
3063,14 → 3063,14
691
WVList
 
225
241
1
1
 
692
MItem
19
CLIB\MBYTE\mbterm.c
21
CLIB\MBYTE\mbcupper.c
693
WString
4
3081,7 → 3081,7
695
WVList
 
225
241
1
1
 
3088,7 → 3088,7
696
MItem
19
CLIB\MBYTE\mbtowc.c
CLIB\MBYTE\mbinit.c
697
WString
4
3099,14 → 3099,14
699
WVList
 
225
241
1
1
 
700
MItem
20
CLIB\MBYTE\setmbcp.c
21
CLIB\MBYTE\mbisdbcs.c
701
WString
4
3117,14 → 3117,14
703
WVList
 
225
241
1
1
 
704
MItem
19
CLIB\MBYTE\wctomb.c
21
CLIB\MBYTE\mbislead.c
705
WString
4
3135,14 → 3135,14
707
WVList
 
225
241
1
1
 
708
MItem
18
CLIB\MEMORY\bcmp.c
19
CLIB\MBYTE\mbsinc.c
709
WString
4
3153,14 → 3153,14
711
WVList
 
225
241
1
1
 
712
MItem
19
CLIB\MEMORY\bcopy.c
21
CLIB\MBYTE\mbsnextc.c
713
WString
4
3171,7 → 3171,7
715
WVList
 
225
241
1
1
 
3178,7 → 3178,7
716
MItem
19
CLIB\MEMORY\bzero.c
CLIB\MBYTE\mbterm.c
717
WString
4
3189,14 → 3189,14
719
WVList
 
225
241
1
1
 
720
MItem
22
CLIB\MEMORY\fmemccpy.c
19
CLIB\MBYTE\mbtowc.c
721
WString
4
3207,14 → 3207,14
723
WVList
 
225
241
1
1
 
724
MItem
21
CLIB\MEMORY\fmemchr.c
20
CLIB\MBYTE\setmbcp.c
725
WString
4
3225,14 → 3225,14
727
WVList
 
225
241
1
1
 
728
MItem
21
CLIB\MEMORY\fmemcmp.c
19
CLIB\MBYTE\wctomb.c
729
WString
4
3243,14 → 3243,14
731
WVList
 
225
241
1
1
 
732
MItem
21
CLIB\MEMORY\fmemcpy.c
18
CLIB\MEMORY\bcmp.c
733
WString
4
3261,14 → 3261,14
735
WVList
 
225
241
1
1
 
736
MItem
22
CLIB\MEMORY\fmemicmp.c
19
CLIB\MEMORY\bcopy.c
737
WString
4
3279,14 → 3279,14
739
WVList
 
225
241
1
1
 
740
MItem
22
CLIB\MEMORY\fmemmove.c
19
CLIB\MEMORY\bzero.c
741
WString
4
3297,14 → 3297,14
743
WVList
 
225
241
1
1
 
744
MItem
21
CLIB\MEMORY\fmemset.c
22
CLIB\MEMORY\fmemccpy.c
745
WString
4
3315,7 → 3315,7
747
WVList
 
225
241
1
1
 
3322,7 → 3322,7
748
MItem
21
CLIB\MEMORY\memccpy.c
CLIB\MEMORY\fmemchr.c
749
WString
4
3333,14 → 3333,14
751
WVList
 
225
241
1
1
 
752
MItem
20
CLIB\MEMORY\memchr.c
21
CLIB\MEMORY\fmemcmp.c
753
WString
4
3351,14 → 3351,14
755
WVList
 
225
241
1
1
 
756
MItem
20
CLIB\MEMORY\memcmp.c
21
CLIB\MEMORY\fmemcpy.c
757
WString
4
3369,14 → 3369,14
759
WVList
 
225
241
1
1
 
760
MItem
20
CLIB\MEMORY\memcpy.c
22
CLIB\MEMORY\fmemicmp.c
761
WString
4
3387,7 → 3387,7
763
WVList
 
225
241
1
1
 
3394,7 → 3394,7
764
MItem
22
CLIB\MEMORY\memcpy_s.c
CLIB\MEMORY\fmemmove.c
765
WString
4
3405,7 → 3405,7
767
WVList
 
225
241
1
1
 
3412,7 → 3412,7
768
MItem
21
CLIB\MEMORY\memicmp.c
CLIB\MEMORY\fmemset.c
769
WString
4
3423,14 → 3423,14
771
WVList
 
225
241
1
1
 
772
MItem
22
CLIB\MEMORY\memmov_s.c
21
CLIB\MEMORY\memccpy.c
773
WString
4
3441,14 → 3441,14
775
WVList
 
225
241
1
1
 
776
MItem
21
CLIB\MEMORY\memmove.c
20
CLIB\MEMORY\memchr.c
777
WString
4
3459,7 → 3459,7
779
WVList
 
225
241
1
1
 
3466,7 → 3466,7
780
MItem
20
CLIB\MEMORY\memset.c
CLIB\MEMORY\memcmp.c
781
WString
4
3477,14 → 3477,14
783
WVList
 
225
241
1
1
 
784
MItem
21
CLIB\MEMORY\memtest.c
20
CLIB\MEMORY\memcpy.c
785
WString
4
3495,7 → 3495,7
787
WVList
 
225
241
1
1
 
3502,7 → 3502,7
788
MItem
22
CLIB\MEMORY\movedata.c
CLIB\MEMORY\memcpy_s.c
789
WString
4
3513,14 → 3513,14
791
WVList
 
225
241
1
1
 
792
MItem
18
CLIB\MEMORY\swab.c
21
CLIB\MEMORY\memicmp.c
793
WString
4
3531,14 → 3531,14
795
WVList
 
225
241
1
1
 
796
MItem
20
CLIB\PROCESS\signl.c
22
CLIB\MEMORY\memmov_s.c
797
WString
4
3549,7 → 3549,7
799
WVList
 
225
241
1
1
 
3556,7 → 3556,7
800
MItem
21
CLIB\SEARCH\bsearch.c
CLIB\MEMORY\memmove.c
801
WString
4
3567,14 → 3567,14
803
WVList
 
225
241
1
1
 
804
MItem
21
CLIB\SEARCH\bsrch_s.c
20
CLIB\MEMORY\memset.c
805
WString
4
3585,14 → 3585,14
807
WVList
 
225
241
1
1
 
808
MItem
19
CLIB\SEARCH\lfind.c
21
CLIB\MEMORY\memtest.c
809
WString
4
3603,14 → 3603,14
811
WVList
 
225
241
1
1
 
812
MItem
21
CLIB\SEARCH\lsearch.c
22
CLIB\MEMORY\movedata.c
813
WString
4
3621,14 → 3621,14
815
WVList
 
225
241
1
1
 
816
MItem
19
CLIB\SEARCH\qsort.c
18
CLIB\MEMORY\swab.c
817
WString
4
3639,14 → 3639,14
819
WVList
 
225
241
1
1
 
820
MItem
21
CLIB\SEARCH\qsort_s.c
18
CLIB\MISC\locale.c
821
WString
4
3657,14 → 3657,14
823
WVList
 
225
241
1
1
 
824
MItem
23
CLIB\STREAMIO\allocfp.c
20
CLIB\MISC\setlocal.c
825
WString
4
3675,14 → 3675,14
827
WVList
 
225
241
1
1
 
828
MItem
22
CLIB\STREAMIO\chktty.c
20
CLIB\PROCESS\signl.c
829
WString
4
3693,14 → 3693,14
831
WVList
 
225
241
1
1
 
832
MItem
24
CLIB\STREAMIO\clearerr.c
21
CLIB\SEARCH\bsearch.c
833
WString
4
3711,14 → 3711,14
835
WVList
 
225
241
1
1
 
836
MItem
24
CLIB\STREAMIO\comtflag.c
21
CLIB\SEARCH\bsrch_s.c
837
WString
4
3729,14 → 3729,14
839
WVList
 
225
241
1
1
 
840
MItem
23
CLIB\STREAMIO\dsetefg.c
19
CLIB\SEARCH\lfind.c
841
WString
4
3747,14 → 3747,14
843
WVList
 
225
241
1
1
 
844
MItem
22
CLIB\STREAMIO\fclose.c
21
CLIB\SEARCH\lsearch.c
845
WString
4
3765,14 → 3765,14
847
WVList
 
225
241
1
1
 
848
MItem
22
CLIB\STREAMIO\fdopen.c
19
CLIB\SEARCH\qsort.c
849
WString
4
3783,14 → 3783,14
851
WVList
 
225
241
1
1
 
852
MItem
20
CLIB\STREAMIO\feof.c
21
CLIB\SEARCH\qsort_s.c
853
WString
4
3801,14 → 3801,14
855
WVList
 
225
241
1
1
 
856
MItem
22
CLIB\STREAMIO\ferror.c
23
CLIB\STREAMIO\allocfp.c
857
WString
4
3819,7 → 3819,7
859
WVList
 
225
241
1
1
 
3826,7 → 3826,7
860
MItem
22
CLIB\STREAMIO\fflush.c
CLIB\STREAMIO\chktty.c
861
WString
4
3837,14 → 3837,14
863
WVList
 
225
241
1
1
 
864
MItem
21
CLIB\STREAMIO\fgetc.c
24
CLIB\STREAMIO\clearerr.c
865
WString
4
3855,7 → 3855,7
867
WVList
 
225
241
1
1
 
3862,7 → 3862,7
868
MItem
24
CLIB\STREAMIO\fgetchar.c
CLIB\STREAMIO\comtflag.c
869
WString
4
3873,7 → 3873,7
871
WVList
 
225
241
1
1
 
3880,7 → 3880,7
872
MItem
23
CLIB\STREAMIO\fgetpos.c
CLIB\STREAMIO\dsetefg.c
873
WString
4
3891,14 → 3891,14
875
WVList
 
225
241
1
1
 
876
MItem
21
CLIB\STREAMIO\fgets.c
22
CLIB\STREAMIO\fclose.c
877
WString
4
3909,14 → 3909,14
879
WVList
 
225
241
1
1
 
880
MItem
21
CLIB\STREAMIO\flush.c
22
CLIB\STREAMIO\fdopen.c
881
WString
4
3927,14 → 3927,14
883
WVList
 
225
241
1
1
 
884
MItem
24
CLIB\STREAMIO\flushall.c
20
CLIB\STREAMIO\feof.c
885
WString
4
3945,14 → 3945,14
887
WVList
 
225
241
1
1
 
888
MItem
21
CLIB\STREAMIO\fopen.c
22
CLIB\STREAMIO\ferror.c
889
WString
4
3963,14 → 3963,14
891
WVList
 
225
241
1
1
 
892
MItem
23
CLIB\STREAMIO\fopen_s.c
22
CLIB\STREAMIO\fflush.c
893
WString
4
3981,14 → 3981,14
895
WVList
 
225
241
1
1
 
896
MItem
23
CLIB\STREAMIO\fprintf.c
21
CLIB\STREAMIO\fgetc.c
897
WString
4
3999,7 → 3999,7
899
WVList
 
225
241
1
1
 
4006,7 → 4006,7
900
MItem
24
CLIB\STREAMIO\fprntf_s.c
CLIB\STREAMIO\fgetchar.c
901
WString
4
4017,14 → 4017,14
903
WVList
 
225
241
1
1
 
904
MItem
21
CLIB\STREAMIO\fprtf.c
23
CLIB\STREAMIO\fgetpos.c
905
WString
4
4035,14 → 4035,14
907
WVList
 
225
241
1
1
 
908
MItem
23
CLIB\STREAMIO\fprtf_s.c
21
CLIB\STREAMIO\fgets.c
909
WString
4
4053,7 → 4053,7
911
WVList
 
225
241
1
1
 
4060,7 → 4060,7
912
MItem
21
CLIB\STREAMIO\fputc.c
CLIB\STREAMIO\flush.c
913
WString
4
4071,7 → 4071,7
915
WVList
 
225
241
1
1
 
4078,7 → 4078,7
916
MItem
24
CLIB\STREAMIO\fputchar.c
CLIB\STREAMIO\flushall.c
917
WString
4
4089,7 → 4089,7
919
WVList
 
225
241
1
1
 
4096,7 → 4096,7
920
MItem
21
CLIB\STREAMIO\fputs.c
CLIB\STREAMIO\fopen.c
921
WString
4
4107,14 → 4107,14
923
WVList
 
225
241
1
1
 
924
MItem
21
CLIB\STREAMIO\fread.c
23
CLIB\STREAMIO\fopen_s.c
925
WString
4
4125,14 → 4125,14
927
WVList
 
225
241
1
1
 
928
MItem
22
CLIB\STREAMIO\freefp.c
23
CLIB\STREAMIO\fprintf.c
929
WString
4
4143,14 → 4143,14
931
WVList
 
225
241
1
1
 
932
MItem
23
CLIB\STREAMIO\freop_s.c
24
CLIB\STREAMIO\fprntf_s.c
933
WString
4
4161,14 → 4161,14
935
WVList
 
225
241
1
1
 
936
MItem
22
CLIB\STREAMIO\fscanf.c
21
CLIB\STREAMIO\fprtf.c
937
WString
4
4179,14 → 4179,14
939
WVList
 
225
241
1
1
 
940
MItem
24
CLIB\STREAMIO\fscanf_s.c
23
CLIB\STREAMIO\fprtf_s.c
941
WString
4
4197,7 → 4197,7
943
WVList
 
225
241
1
1
 
4204,7 → 4204,7
944
MItem
21
CLIB\STREAMIO\fseek.c
CLIB\STREAMIO\fputc.c
945
WString
4
4215,14 → 4215,14
947
WVList
 
225
241
1
1
 
948
MItem
23
CLIB\STREAMIO\fsetpos.c
24
CLIB\STREAMIO\fputchar.c
949
WString
4
4233,7 → 4233,7
951
WVList
 
225
241
1
1
 
4240,7 → 4240,7
952
MItem
21
CLIB\STREAMIO\ftell.c
CLIB\STREAMIO\fputs.c
953
WString
4
4251,7 → 4251,7
955
WVList
 
225
241
1
1
 
4258,7 → 4258,7
956
MItem
21
CLIB\STREAMIO\fwide.c
CLIB\STREAMIO\fread.c
957
WString
4
4269,7 → 4269,7
959
WVList
 
225
241
1
1
 
4276,7 → 4276,7
960
MItem
22
CLIB\STREAMIO\fwrite.c
CLIB\STREAMIO\freefp.c
961
WString
4
4287,14 → 4287,14
963
WVList
 
225
241
1
1
 
964
MItem
20
CLIB\STREAMIO\getc.c
23
CLIB\STREAMIO\freop_s.c
965
WString
4
4305,14 → 4305,14
967
WVList
 
225
241
1
1
 
968
MItem
23
CLIB\STREAMIO\getchar.c
22
CLIB\STREAMIO\fscanf.c
969
WString
4
4323,14 → 4323,14
971
WVList
 
225
241
1
1
 
972
MItem
20
CLIB\STREAMIO\gets.c
24
CLIB\STREAMIO\fscanf_s.c
973
WString
4
4341,14 → 4341,14
975
WVList
 
225
241
1
1
 
976
MItem
22
CLIB\STREAMIO\gets_s.c
21
CLIB\STREAMIO\fseek.c
977
WString
4
4359,14 → 4359,14
979
WVList
 
225
241
1
1
 
980
MItem
20
CLIB\STREAMIO\getw.c
23
CLIB\STREAMIO\fsetpos.c
981
WString
4
4377,14 → 4377,14
983
WVList
 
225
241
1
1
 
984
MItem
24
CLIB\STREAMIO\initfile.c
21
CLIB\STREAMIO\ftell.c
985
WString
4
4395,14 → 4395,14
987
WVList
 
225
241
1
1
 
988
MItem
23
CLIB\STREAMIO\ioalloc.c
21
CLIB\STREAMIO\fwide.c
989
WString
4
4413,14 → 4413,14
991
WVList
 
225
241
1
1
 
992
MItem
19
CLIB\STREAMIO\iob.c
22
CLIB\STREAMIO\fwrite.c
993
WString
4
4431,14 → 4431,14
995
WVList
 
225
241
1
1
 
996
MItem
23
CLIB\STREAMIO\iobaddr.c
20
CLIB\STREAMIO\getc.c
997
WString
4
4449,14 → 4449,14
999
WVList
 
225
241
1
1
 
1000
MItem
22
CLIB\STREAMIO\iobptr.c
23
CLIB\STREAMIO\getchar.c
1001
WString
4
4467,14 → 4467,14
1003
WVList
 
225
241
1
1
 
1004
MItem
24
CLIB\STREAMIO\noefgfmt.c
20
CLIB\STREAMIO\gets.c
1005
WString
4
4485,7 → 4485,7
1007
WVList
 
225
241
1
1
 
4492,7 → 4492,7
1008
MItem
22
CLIB\STREAMIO\perror.c
CLIB\STREAMIO\gets_s.c
1009
WString
4
4503,14 → 4503,14
1011
WVList
 
225
241
1
1
 
1012
MItem
22
CLIB\STREAMIO\printf.c
20
CLIB\STREAMIO\getw.c
1013
WString
4
4521,7 → 4521,7
1015
WVList
 
225
241
1
1
 
4528,7 → 4528,7
1016
MItem
24
CLIB\STREAMIO\printf_s.c
CLIB\STREAMIO\initfile.c
1017
WString
4
4539,14 → 4539,14
1019
WVList
 
225
241
1
1
 
1020
MItem
20
CLIB\STREAMIO\prtf.c
23
CLIB\STREAMIO\ioalloc.c
1021
WString
4
4557,14 → 4557,14
1023
WVList
 
225
241
1
1
 
1024
MItem
22
CLIB\STREAMIO\prtf_s.c
19
CLIB\STREAMIO\iob.c
1025
WString
4
4575,14 → 4575,14
1027
WVList
 
225
241
1
1
 
1028
MItem
20
CLIB\STREAMIO\putc.c
23
CLIB\STREAMIO\iobaddr.c
1029
WString
4
4593,14 → 4593,14
1031
WVList
 
225
241
1
1
 
1032
MItem
23
CLIB\STREAMIO\putchar.c
22
CLIB\STREAMIO\iobptr.c
1033
WString
4
4611,14 → 4611,14
1035
WVList
 
225
241
1
1
 
1036
MItem
20
CLIB\STREAMIO\puts.c
24
CLIB\STREAMIO\noefgfmt.c
1037
WString
4
4629,14 → 4629,14
1039
WVList
 
225
241
1
1
 
1040
MItem
20
CLIB\STREAMIO\putw.c
22
CLIB\STREAMIO\perror.c
1041
WString
4
4647,7 → 4647,7
1043
WVList
 
225
241
1
1
 
4654,7 → 4654,7
1044
MItem
22
CLIB\STREAMIO\rewind.c
CLIB\STREAMIO\printf.c
1045
WString
4
4665,14 → 4665,14
1047
WVList
 
225
241
1
1
 
1048
MItem
21
CLIB\STREAMIO\scanf.c
24
CLIB\STREAMIO\printf_s.c
1049
WString
4
4683,14 → 4683,14
1051
WVList
 
225
241
1
1
 
1052
MItem
23
CLIB\STREAMIO\scanf_s.c
20
CLIB\STREAMIO\prtf.c
1053
WString
4
4701,14 → 4701,14
1055
WVList
 
225
241
1
1
 
1056
MItem
20
CLIB\STREAMIO\scnf.c
22
CLIB\STREAMIO\prtf_s.c
1057
WString
4
4719,14 → 4719,14
1059
WVList
 
225
241
1
1
 
1060
MItem
22
CLIB\STREAMIO\scnf_s.c
20
CLIB\STREAMIO\putc.c
1061
WString
4
4737,14 → 4737,14
1063
WVList
 
225
241
1
1
 
1064
MItem
22
CLIB\STREAMIO\setbuf.c
23
CLIB\STREAMIO\putchar.c
1065
WString
4
4755,14 → 4755,14
1067
WVList
 
225
241
1
1
 
1068
MItem
22
CLIB\STREAMIO\setefg.c
20
CLIB\STREAMIO\puts.c
1069
WString
4
4773,14 → 4773,14
1071
WVList
 
225
241
1
1
 
1072
MItem
23
CLIB\STREAMIO\setvbuf.c
20
CLIB\STREAMIO\putw.c
1073
WString
4
4791,14 → 4791,14
1075
WVList
 
225
241
1
1
 
1076
MItem
21
CLIB\STREAMIO\tmpfl.c
22
CLIB\STREAMIO\rewind.c
1077
WString
4
4809,14 → 4809,14
1079
WVList
 
225
241
1
1
 
1080
MItem
23
CLIB\STREAMIO\tmputil.c
21
CLIB\STREAMIO\scanf.c
1081
WString
4
4827,14 → 4827,14
1083
WVList
 
225
241
1
1
 
1084
MItem
18
CLIB\STRING\bits.c
23
CLIB\STREAMIO\scanf_s.c
1085
WString
4
4845,14 → 4845,14
1087
WVList
 
225
241
1
1
 
1088
MItem
21
CLIB\STRING\bprintf.c
20
CLIB\STREAMIO\scnf.c
1089
WString
4
4863,7 → 4863,7
1091
WVList
 
225
241
1
1
 
4870,7 → 4870,7
1092
MItem
22
CLIB\STRING\fsetbits.c
CLIB\STREAMIO\scnf_s.c
1093
WString
4
4881,14 → 4881,14
1095
WVList
 
225
241
1
1
 
1096
MItem
21
CLIB\STRING\fstrcat.c
22
CLIB\STREAMIO\setbuf.c
1097
WString
4
4899,14 → 4899,14
1099
WVList
 
225
241
1
1
 
1100
MItem
21
CLIB\STRING\fstrchr.c
22
CLIB\STREAMIO\setefg.c
1101
WString
4
4917,14 → 4917,14
1103
WVList
 
225
241
1
1
 
1104
MItem
21
CLIB\STRING\fstrcmp.c
23
CLIB\STREAMIO\setvbuf.c
1105
WString
4
4935,7 → 4935,7
1107
WVList
 
225
241
1
1
 
4942,7 → 4942,7
1108
MItem
21
CLIB\STRING\fstrcpy.c
CLIB\STREAMIO\tmpfl.c
1109
WString
4
4953,14 → 4953,14
1111
WVList
 
225
241
1
1
 
1112
MItem
22
CLIB\STRING\fstrcspn.c
23
CLIB\STREAMIO\tmputil.c
1113
WString
4
4971,14 → 4971,14
1115
WVList
 
225
241
1
1
 
1116
MItem
21
CLIB\STRING\fstrdup.c
18
CLIB\STRING\bits.c
1117
WString
4
4989,14 → 4989,14
1119
WVList
 
225
241
1
1
 
1120
MItem
22
CLIB\STRING\fstricmp.c
21
CLIB\STRING\bprintf.c
1121
WString
4
5007,14 → 5007,14
1123
WVList
 
225
241
1
1
 
1124
MItem
21
CLIB\STRING\fstrlen.c
22
CLIB\STRING\fsetbits.c
1125
WString
4
5025,7 → 5025,7
1127
WVList
 
225
241
1
1
 
5032,7 → 5032,7
1128
MItem
21
CLIB\STRING\fstrlwr.c
CLIB\STRING\fstrcat.c
1129
WString
4
5043,14 → 5043,14
1131
WVList
 
225
241
1
1
 
1132
MItem
22
CLIB\STRING\fstrncat.c
21
CLIB\STRING\fstrchr.c
1133
WString
4
5061,14 → 5061,14
1135
WVList
 
225
241
1
1
 
1136
MItem
22
CLIB\STRING\fstrncmp.c
21
CLIB\STRING\fstrcmp.c
1137
WString
4
5079,14 → 5079,14
1139
WVList
 
225
241
1
1
 
1140
MItem
22
CLIB\STRING\fstrncpy.c
21
CLIB\STRING\fstrcpy.c
1141
WString
4
5097,7 → 5097,7
1143
WVList
 
225
241
1
1
 
5104,7 → 5104,7
1144
MItem
22
CLIB\STRING\fstrnicm.c
CLIB\STRING\fstrcspn.c
1145
WString
4
5115,14 → 5115,14
1147
WVList
 
225
241
1
1
 
1148
MItem
22
CLIB\STRING\fstrnset.c
21
CLIB\STRING\fstrdup.c
1149
WString
4
5133,7 → 5133,7
1151
WVList
 
225
241
1
1
 
5140,7 → 5140,7
1152
MItem
22
CLIB\STRING\fstrpbrk.c
CLIB\STRING\fstricmp.c
1153
WString
4
5151,14 → 5151,14
1155
WVList
 
225
241
1
1
 
1156
MItem
22
CLIB\STRING\fstrrchr.c
21
CLIB\STRING\fstrlen.c
1157
WString
4
5169,7 → 5169,7
1159
WVList
 
225
241
1
1
 
5176,7 → 5176,7
1160
MItem
21
CLIB\STRING\fstrrev.c
CLIB\STRING\fstrlwr.c
1161
WString
4
5187,14 → 5187,14
1163
WVList
 
225
241
1
1
 
1164
MItem
21
CLIB\STRING\fstrset.c
22
CLIB\STRING\fstrncat.c
1165
WString
4
5205,14 → 5205,14
1167
WVList
 
225
241
1
1
 
1168
MItem
21
CLIB\STRING\fstrspn.c
22
CLIB\STRING\fstrncmp.c
1169
WString
4
5223,7 → 5223,7
1171
WVList
 
225
241
1
1
 
5230,7 → 5230,7
1172
MItem
22
CLIB\STRING\fstrspnp.c
CLIB\STRING\fstrncpy.c
1173
WString
4
5241,14 → 5241,14
1175
WVList
 
225
241
1
1
 
1176
MItem
21
CLIB\STRING\fstrstr.c
22
CLIB\STRING\fstrnicm.c
1177
WString
4
5259,14 → 5259,14
1179
WVList
 
225
241
1
1
 
1180
MItem
21
CLIB\STRING\fstrtok.c
22
CLIB\STRING\fstrnset.c
1181
WString
4
5277,14 → 5277,14
1183
WVList
 
225
241
1
1
 
1184
MItem
21
CLIB\STRING\fstrupr.c
22
CLIB\STRING\fstrpbrk.c
1185
WString
4
5295,14 → 5295,14
1187
WVList
 
225
241
1
1
 
1188
MItem
20
CLIB\STRING\selptr.c
22
CLIB\STRING\fstrrchr.c
1189
WString
4
5313,14 → 5313,14
1191
WVList
 
225
241
1
1
 
1192
MItem
20
CLIB\STRING\sneptr.c
21
CLIB\STRING\fstrrev.c
1193
WString
4
5331,14 → 5331,14
1195
WVList
 
225
241
1
1
 
1196
MItem
22
CLIB\STRING\snprintf.c
21
CLIB\STRING\fstrset.c
1197
WString
4
5349,14 → 5349,14
1199
WVList
 
225
241
1
1
 
1200
MItem
22
CLIB\STRING\snprtf_s.c
21
CLIB\STRING\fstrspn.c
1201
WString
4
5367,14 → 5367,14
1203
WVList
 
225
241
1
1
 
1204
MItem
21
CLIB\STRING\sprintf.c
22
CLIB\STRING\fstrspnp.c
1205
WString
4
5385,14 → 5385,14
1207
WVList
 
225
241
1
1
 
1208
MItem
22
CLIB\STRING\sprntf_s.c
21
CLIB\STRING\fstrstr.c
1209
WString
4
5403,14 → 5403,14
1211
WVList
 
225
241
1
1
 
1212
MItem
20
CLIB\STRING\sscanf.c
21
CLIB\STRING\fstrtok.c
1213
WString
4
5421,14 → 5421,14
1215
WVList
 
225
241
1
1
 
1216
MItem
22
CLIB\STRING\sscanf_s.c
21
CLIB\STRING\fstrupr.c
1217
WString
4
5439,14 → 5439,14
1219
WVList
 
225
241
1
1
 
1220
MItem
22
CLIB\STRING\stncat_s.c
20
CLIB\STRING\selptr.c
1221
WString
4
5457,14 → 5457,14
1223
WVList
 
225
241
1
1
 
1224
MItem
22
CLIB\STRING\stncpy_s.c
20
CLIB\STRING\sneptr.c
1225
WString
4
5475,14 → 5475,14
1227
WVList
 
225
241
1
1
 
1228
MItem
20
CLIB\STRING\strcat.c
22
CLIB\STRING\snprintf.c
1229
WString
4
5493,7 → 5493,7
1231
WVList
 
225
241
1
1
 
5500,7 → 5500,7
1232
MItem
22
CLIB\STRING\strcat_s.c
CLIB\STRING\snprtf_s.c
1233
WString
4
5511,14 → 5511,14
1235
WVList
 
225
241
1
1
 
1236
MItem
20
CLIB\STRING\strchr.c
21
CLIB\STRING\sprintf.c
1237
WString
4
5529,14 → 5529,14
1239
WVList
 
225
241
1
1
 
1240
MItem
21
CLIB\STRING\strcoll.c
22
CLIB\STRING\sprntf_s.c
1241
WString
4
5547,7 → 5547,7
1243
WVList
 
225
241
1
1
 
5554,7 → 5554,7
1244
MItem
20
CLIB\STRING\strcpy.c
CLIB\STRING\sscanf.c
1245
WString
4
5565,7 → 5565,7
1247
WVList
 
225
241
1
1
 
5572,7 → 5572,7
1248
MItem
22
CLIB\STRING\strcpy_s.c
CLIB\STRING\sscanf_s.c
1249
WString
4
5583,14 → 5583,14
1251
WVList
 
225
241
1
1
 
1252
MItem
21
CLIB\STRING\strcspn.c
22
CLIB\STRING\stncat_s.c
1253
WString
4
5601,14 → 5601,14
1255
WVList
 
225
241
1
1
 
1256
MItem
20
CLIB\STRING\strdup.c
22
CLIB\STRING\stncpy_s.c
1257
WString
4
5619,14 → 5619,14
1259
WVList
 
225
241
1
1
 
1260
MItem
22
CLIB\STRING\streln_s.c
20
CLIB\STRING\strcat.c
1261
WString
4
5637,7 → 5637,7
1263
WVList
 
225
241
1
1
 
5644,7 → 5644,7
1264
MItem
22
CLIB\STRING\strerr_s.c
CLIB\STRING\strcat_s.c
1265
WString
4
5655,14 → 5655,14
1267
WVList
 
225
241
1
1
 
1268
MItem
22
CLIB\STRING\strerror.c
20
CLIB\STRING\strchr.c
1269
WString
4
5673,7 → 5673,7
1271
WVList
 
225
241
1
1
 
5680,7 → 5680,7
1272
MItem
21
CLIB\STRING\stricmp.c
CLIB\STRING\strcoll.c
1273
WString
4
5691,14 → 5691,14
1275
WVList
 
225
241
1
1
 
1276
MItem
21
CLIB\STRING\strlcat.c
20
CLIB\STRING\strcpy.c
1277
WString
4
5709,14 → 5709,14
1279
WVList
 
225
241
1
1
 
1280
MItem
21
CLIB\STRING\strlcpy.c
22
CLIB\STRING\strcpy_s.c
1281
WString
4
5727,14 → 5727,14
1283
WVList
 
225
241
1
1
 
1284
MItem
20
CLIB\STRING\strlen.c
21
CLIB\STRING\strcspn.c
1285
WString
4
5745,7 → 5745,7
1287
WVList
 
225
241
1
1
 
5752,7 → 5752,7
1288
MItem
20
CLIB\STRING\strlwr.c
CLIB\STRING\strdup.c
1289
WString
4
5763,14 → 5763,14
1291
WVList
 
225
241
1
1
 
1292
MItem
21
CLIB\STRING\strncat.c
22
CLIB\STRING\streln_s.c
1293
WString
4
5781,14 → 5781,14
1295
WVList
 
225
241
1
1
 
1296
MItem
21
CLIB\STRING\strncmp.c
22
CLIB\STRING\strerr_s.c
1297
WString
4
5799,14 → 5799,14
1299
WVList
 
225
241
1
1
 
1300
MItem
21
CLIB\STRING\strncpy.c
22
CLIB\STRING\strerror.c
1301
WString
4
5817,14 → 5817,14
1303
WVList
 
225
241
1
1
 
1304
MItem
22
CLIB\STRING\strnicmp.c
21
CLIB\STRING\stricmp.c
1305
WString
4
5835,14 → 5835,14
1307
WVList
 
225
241
1
1
 
1308
MItem
22
CLIB\STRING\strnln_s.c
21
CLIB\STRING\strlcat.c
1309
WString
4
5853,7 → 5853,7
1311
WVList
 
225
241
1
1
 
5860,7 → 5860,7
1312
MItem
21
CLIB\STRING\strnset.c
CLIB\STRING\strlcpy.c
1313
WString
4
5871,14 → 5871,14
1315
WVList
 
225
241
1
1
 
1316
MItem
21
CLIB\STRING\strpbrk.c
20
CLIB\STRING\strlen.c
1317
WString
4
5889,14 → 5889,14
1319
WVList
 
225
241
1
1
 
1320
MItem
21
CLIB\STRING\strrchr.c
20
CLIB\STRING\strlwr.c
1321
WString
4
5907,14 → 5907,14
1323
WVList
 
225
241
1
1
 
1324
MItem
20
CLIB\STRING\strrev.c
21
CLIB\STRING\strncat.c
1325
WString
4
5925,14 → 5925,14
1327
WVList
 
225
241
1
1
 
1328
MItem
20
CLIB\STRING\strset.c
21
CLIB\STRING\strncmp.c
1329
WString
4
5943,14 → 5943,14
1331
WVList
 
225
241
1
1
 
1332
MItem
20
CLIB\STRING\strspn.c
21
CLIB\STRING\strncpy.c
1333
WString
4
5961,14 → 5961,14
1335
WVList
 
225
241
1
1
 
1336
MItem
21
CLIB\STRING\strspnp.c
22
CLIB\STRING\strnicmp.c
1337
WString
4
5979,14 → 5979,14
1339
WVList
 
225
241
1
1
 
1340
MItem
20
CLIB\STRING\strstr.c
22
CLIB\STRING\strnln_s.c
1341
WString
4
5997,14 → 5997,14
1343
WVList
 
225
241
1
1
 
1344
MItem
20
CLIB\STRING\strtok.c
21
CLIB\STRING\strnset.c
1345
WString
4
6015,14 → 6015,14
1347
WVList
 
225
241
1
1
 
1348
MItem
22
CLIB\STRING\strtok_s.c
21
CLIB\STRING\strpbrk.c
1349
WString
4
6033,14 → 6033,14
1351
WVList
 
225
241
1
1
 
1352
MItem
20
CLIB\STRING\strupr.c
21
CLIB\STRING\strrchr.c
1353
WString
4
6051,14 → 6051,14
1355
WVList
 
225
241
1
1
 
1356
MItem
21
CLIB\STRING\strxfrm.c
20
CLIB\STRING\strrev.c
1357
WString
4
6069,14 → 6069,14
1359
WVList
 
225
241
1
1
 
1360
MItem
22
CLIB\STRING\vsprintf.c
20
CLIB\STRING\strset.c
1361
WString
4
6087,14 → 6087,14
1363
WVList
 
225
241
1
1
 
1364
MItem
18
CLIB\TIME\gmtime.c
20
CLIB\STRING\strspn.c
1365
WString
4
6105,14 → 6105,14
1367
WVList
 
225
241
1
1
 
1368
MItem
20
CLIB\TIME\leapyear.c
21
CLIB\STRING\strspnp.c
1369
WString
4
6123,7 → 6123,7
1371
WVList
 
225
241
1
1
 
6130,7 → 6130,7
1372
MItem
20
CLIB\TIME\localtim.c
CLIB\STRING\strstr.c
1373
WString
4
6141,7 → 6141,7
1375
WVList
 
225
241
1
1
 
6148,7 → 6148,7
1376
MItem
20
CLIB\TIME\locmktim.c
CLIB\STRING\strtok.c
1377
WString
4
6159,14 → 6159,14
1379
WVList
 
225
241
1
1
 
1380
MItem
18
CLIB\TIME\mktime.c
22
CLIB\STRING\strtok_s.c
1381
WString
4
6177,14 → 6177,14
1383
WVList
 
225
241
1
1
 
1384
MItem
16
CLIB\TIME\time.c
20
CLIB\STRING\strupr.c
1385
WString
4
6195,14 → 6195,14
1387
WVList
 
225
241
1
1
 
1388
MItem
20
CLIB\TIME\timeutil.c
21
CLIB\STRING\strxfrm.c
1389
WString
4
6213,14 → 6213,14
1391
WVList
 
225
241
1
1
 
1392
MItem
17
CLIB\TIME\tzset.c
22
CLIB\STRING\vsprintf.c
1393
WString
4
6231,18 → 6231,18
1395
WVList
 
225
241
1
1
 
1396
MItem
3
*.h
18
CLIB\TIME\gmtime.c
1397
WString
3
NIL
4
COBJ
1398
WVList
 
6249,18 → 6249,18
1399
WVList
 
-1
241
1
1
 
 
1400
MItem
20
CLIB\MATH\randnext.h
CLIB\TIME\leapyear.c
1401
WString
3
NIL
4
COBJ
1402
WVList
 
6267,7 → 6267,7
1403
WVList
 
1396
241
1
1
 
6274,11 → 6274,11
1404
MItem
20
CLIB\STRING\errstr.h
CLIB\TIME\localtim.c
1405
WString
3
NIL
4
COBJ
1406
WVList
 
6285,18 → 6285,18
1407
WVList
 
1396
241
1
1
 
1408
MItem
22
CLIB\STRING\nextftok.h
20
CLIB\TIME\locmktim.c
1409
WString
3
NIL
4
COBJ
1410
WVList
 
6303,18 → 6303,18
1411
WVList
 
1396
241
1
1
 
1412
MItem
21
CLIB\STRING\nexttok.h
18
CLIB\TIME\mktime.c
1413
WString
3
NIL
4
COBJ
1414
WVList
 
6321,25 → 6321,187
1415
WVList
 
1396
241
1
1
 
1416
MItem
16
CLIB\TIME\time.c
1417
WString
4
COBJ
1418
WVList
 
1419
WVList
 
241
1
1
 
1420
MItem
20
CLIB\TIME\timeutil.c
1421
WString
4
COBJ
1422
WVList
 
1423
WVList
 
241
1
1
 
1424
MItem
17
CLIB\TIME\tzset.c
1425
WString
4
COBJ
1426
WVList
 
1427
WVList
 
241
1
1
 
1428
MItem
3
*.h
1429
WString
3
NIL
1430
WVList
 
1431
WVList
 
-1
1
1
 
1432
MItem
16
CLIB\H\kolibri.h
1433
WString
3
NIL
1434
WVList
 
1435
WVList
 
1428
1
1
 
1436
MItem
20
CLIB\MATH\randnext.h
1437
WString
3
NIL
1438
WVList
 
1439
WVList
 
1428
1
1
 
1440
MItem
20
CLIB\STRING\errstr.h
1441
WString
3
NIL
1442
WVList
 
1443
WVList
 
1428
1
1
 
1444
MItem
22
CLIB\STRING\nextftok.h
1445
WString
3
NIL
1446
WVList
 
1447
WVList
 
1428
1
1
 
1448
MItem
21
CLIB\STRING\nexttok.h
1449
WString
3
NIL
1450
WVList
 
1451
WVList
 
1428
1
1
 
1452
MItem
21
CLIB\STRING\setbits.h
1417
1453
WString
3
NIL
1418
1454
WVList
 
1419
1455
WVList
 
1396
1428
1
1