modified code for the first successful dos/4gw build omitting unsupported features
This commit is contained in:
		| @ -1,5 +1,5 @@ | ||||
| /* | ||||
|  * $Id: awk.c 447 2011-05-01 13:28:51Z hyunghwan.chung $ | ||||
|  * $Id: awk.c 455 2011-05-09 16:11:13Z hyunghwan.chung $ | ||||
|  * | ||||
|     Copyright 2006-2011 Chung, Hyung-Hwan. | ||||
|     This file is part of QSE. | ||||
| @ -28,6 +28,7 @@ | ||||
| #include <qse/cmn/stdio.h> | ||||
| #include <qse/cmn/main.h> | ||||
| #include <qse/cmn/xma.h> | ||||
| #include <qse/cmn/time.h> | ||||
|  | ||||
| #include <string.h> | ||||
| #include <signal.h> | ||||
| @ -46,6 +47,8 @@ | ||||
| #	define INCL_DOSEXCEPTIONS | ||||
| #	define INCL_ERRORS | ||||
| #	include <os2.h> | ||||
| #elif defined(__DOS__) | ||||
| #	include <dos.h> | ||||
| #else | ||||
| #	include <unistd.h> | ||||
| #	include <errno.h> | ||||
| @ -132,6 +135,19 @@ static ULONG _System stop_run ( | ||||
|  | ||||
| 	return XCPT_CONTINUE_SEARCH; /* exception not resolved */ | ||||
| } | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
|  | ||||
| static void setsignal (int sig, void(*handler)(int)) | ||||
| { | ||||
| 	signal (sig, handler); | ||||
| } | ||||
|  | ||||
| static void stop_run (int sig) | ||||
| { | ||||
| 	qse_awk_rtx_stop (app_rtx); | ||||
| } | ||||
|  | ||||
| #else | ||||
|  | ||||
| static int setsignal (int sig, void(*handler)(int), int restart) | ||||
| @ -180,6 +196,8 @@ static void set_intr_run (void) | ||||
| 	os2_excrr.ExceptionHandler = (ERR)stop_run; | ||||
| 	rc = DosSetExceptionHandler (&os2_excrr); | ||||
| 	/*if (rc != NO_ERROR)...*/ | ||||
| #elif defined(__DOS__) | ||||
| 	setsignal (SIGINT, stop_run); | ||||
| #else | ||||
| 	/*setsignal (SIGINT, stop_run, 1); TO BE MORE COMPATIBLE WITH WIN32*/ | ||||
| 	setsignal (SIGINT, stop_run, 0); | ||||
| @ -194,6 +212,8 @@ static void unset_intr_run (void) | ||||
| 	APIRET rc; | ||||
| 	rc = DosUnsetExceptionHandler (&os2_excrr); | ||||
| 	/*if (rc != NO_ERROR) ...*/ | ||||
| #elif defined(__DOS__) | ||||
| 	setsignal (SIGINT, SIG_DFL); | ||||
| #else | ||||
| 	setsignal (SIGINT, SIG_DFL, 1); | ||||
| #endif | ||||
|  | ||||
| @ -1,5 +1,5 @@ | ||||
| /* | ||||
|  * $Id: pio.h 441 2011-04-22 14:28:43Z hyunghwan.chung $ | ||||
|  * $Id: pio.h 455 2011-05-09 16:11:13Z hyunghwan.chung $ | ||||
|  * | ||||
|     Copyright 2006-2011 Chung, Hyung-Hwan. | ||||
|     This file is part of QSE. | ||||
| @ -130,8 +130,13 @@ typedef enum qse_pio_errnum_t qse_pio_errnum_t; | ||||
| 	/* <os2def.h> => typedef LHANDLE HFILE; | ||||
| 	                 typedef LHANDLE PID; | ||||
| 	                 typedef unsigned long LHANDLE; */ | ||||
|         typedef unsigned long qse_pio_hnd_t; | ||||
| 	typedef unsigned long qse_pio_pid_t;  | ||||
|         typedef unsigned long qse_pio_hnd_t; /**< defines a pipe handle type */ | ||||
| 	typedef unsigned long qse_pio_pid_t; /**< defined a process handle type */ | ||||
| #	define  QSE_PIO_HND_NIL ((qse_pio_hnd_t)-1) | ||||
| #	define  QSE_PIO_PID_NIL ((qse_pio_pid_t)-1) | ||||
| #elif defined(__DOS__) | ||||
| 	typedef int qse_pio_hnd_t; /**< defines a pipe handle type */ | ||||
| 	typedef int qse_pio_pid_t; /**< defines a process handle type */ | ||||
| #	define  QSE_PIO_HND_NIL ((qse_pio_hnd_t)-1) | ||||
| #	define  QSE_PIO_PID_NIL ((qse_pio_pid_t)-1) | ||||
| #else | ||||
|  | ||||
| @ -1,5 +1,5 @@ | ||||
| /* | ||||
|  * $Id: pio.c 454 2011-05-06 15:28:27Z hyunghwan.chung $ | ||||
|  * $Id: pio.c 455 2011-05-09 16:11:13Z hyunghwan.chung $ | ||||
|  * | ||||
|     Copyright 2006-2011 Chung, Hyung-Hwan. | ||||
|     This file is part of QSE. | ||||
| @ -105,8 +105,8 @@ qse_pio_t* qse_pio_init ( | ||||
| 	qse_char_t* dup = QSE_NULL; | ||||
| 	HANDLE windevnul = INVALID_HANDLE_VALUE; | ||||
| 	BOOL x; | ||||
|  | ||||
| #elif defined(__OS2__) | ||||
| 	/* TODO: implmenet this for os/2 */ | ||||
| 	APIRET rc; | ||||
| 	ULONG pipe_size = 4096; | ||||
| 	UCHAR load_error[CCHMAXPATH]; | ||||
| @ -118,8 +118,11 @@ qse_pio_t* qse_pio_init ( | ||||
| 	qse_mchar_t* cmd_line = QSE_NULL; | ||||
| 	qse_mchar_t* cmd_file; | ||||
| 	HFILE os2devnul = (HFILE)-1; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| #	error UNSUPPORTED | ||||
| 	/* TODO: implmenet this for dos | ||||
| 	unsupported yet */ | ||||
|  | ||||
| #else | ||||
| 	qse_pio_pid_t pid; | ||||
| #endif | ||||
| @ -527,7 +530,11 @@ qse_pio_t* qse_pio_init ( | ||||
|  | ||||
| 	if (rc != NO_ERROR) goto oops; | ||||
| 	pio->child = child_rc.codeTerminate; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 		 | ||||
| 	/* TODO: implement this */ | ||||
|  | ||||
| #else | ||||
|  | ||||
| 	if (oflags & QSE_PIO_WRITEIN) | ||||
| @ -854,9 +861,11 @@ qse_pio_t* qse_pio_init ( | ||||
| 	return pio; | ||||
|  | ||||
| oops: | ||||
|  | ||||
| #if defined(_WIN32) | ||||
| 	if (windevnul != INVALID_HANDLE_VALUE) CloseHandle (windevnul); | ||||
| 	if (dup) QSE_MMGR_FREE (mmgr, dup); | ||||
|  | ||||
| #elif defined(__OS2__) | ||||
| 	if (cmd_line) QSE_MMGR_FREE (mmgr, cmd_line); | ||||
| 	if (old_in != QSE_PIO_HND_NIL) | ||||
| @ -889,6 +898,11 @@ oops: | ||||
| 	{ | ||||
|     		if (handle[i] != QSE_PIO_HND_NIL) DosClose (handle[i]); | ||||
| 	} | ||||
| #elif defined(__DOS__) | ||||
| 	for (i = minidx; i < maxidx; i++)  | ||||
| 	{ | ||||
|     		if (handle[i] != QSE_PIO_HND_NIL) close (handle[i]); | ||||
| 	} | ||||
| #else | ||||
| 	for (i = minidx; i < maxidx; i++)  | ||||
| 	{ | ||||
| @ -962,6 +976,8 @@ static qse_ssize_t pio_read ( | ||||
| #elif defined(__OS2__) | ||||
| 	ULONG count; | ||||
| 	APIRET rc; | ||||
| #elif defined(__DOS__) | ||||
| 	int n; | ||||
| #else | ||||
| 	qse_ssize_t n; | ||||
| #endif | ||||
| @ -984,6 +1000,7 @@ static qse_ssize_t pio_read ( | ||||
| 		return -1; | ||||
| 	} | ||||
| 	return (qse_ssize_t)count; | ||||
|  | ||||
| #elif defined(__OS2__) | ||||
| 	if (size > QSE_TYPE_MAX(ULONG)) size = QSE_TYPE_MAX(ULONG); | ||||
| 	rc = DosRead (hnd, buf, (ULONG)size, &count); | ||||
| @ -994,6 +1011,16 @@ static qse_ssize_t pio_read ( | ||||
|     		return -1; | ||||
|     	} | ||||
| 	return (qse_ssize_t)count; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 	/* TODO: verify this */ | ||||
| 	if (size > QSE_TYPE_MAX(unsigned int))  | ||||
| 		size = QSE_TYPE_MAX(unsigned int); | ||||
|  | ||||
| 	n = read (hnd, buf, size); | ||||
| 	if (n == -1) pio->errnum = QSE_PIO_ESUBSYS; | ||||
| 	return n; | ||||
|  | ||||
| #else | ||||
|  | ||||
| 	if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t); | ||||
| @ -1039,6 +1066,8 @@ static qse_ssize_t pio_write ( | ||||
| #elif defined(__OS2__) | ||||
| 	ULONG count; | ||||
| 	APIRET rc; | ||||
| #elif defined(__DOS__) | ||||
| 	int n; | ||||
| #else | ||||
| 	qse_ssize_t n; | ||||
| #endif | ||||
| @ -1073,6 +1102,14 @@ static qse_ssize_t pio_write ( | ||||
| 	} | ||||
| 	return (qse_ssize_t)count; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 	if (size > QSE_TYPE_MAX(unsigned int))  | ||||
| 		size = QSE_TYPE_MAX(unsigned int); | ||||
|  | ||||
| 	n = write (hnd, data, size); | ||||
| 	if (n == -1) pio->errnum = QSE_PIO_ESUBSYS; | ||||
| 	return n; | ||||
|  | ||||
| #else | ||||
|  | ||||
| 	if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t); | ||||
| @ -1131,6 +1168,8 @@ void qse_pio_end (qse_pio_t* pio, qse_pio_hid_t hid) | ||||
| 		CloseHandle (pio->pin[hid].handle); | ||||
| #elif defined(__OS2__) | ||||
| 		DosClose (pio->pin[hid].handle); | ||||
| #elif defined(__DOS__) | ||||
| 		close (pio->pin[hid].handle); | ||||
| #else | ||||
| 		QSE_CLOSE (pio->pin[hid].handle); | ||||
| #endif | ||||
| @ -1231,6 +1270,10 @@ int qse_pio_wait (qse_pio_t* pio) | ||||
| 	return (child_rc.codeTerminate == TC_EXIT)?  | ||||
| 		child_rc.codeResult: (255 + 1 + child_rc.codeTerminate); | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 	/* TOOD: implement this */ | ||||
| 	return -1; | ||||
|  | ||||
| #else | ||||
|  | ||||
| 	int opt = 0; | ||||
| @ -1315,6 +1358,8 @@ int qse_pio_kill (qse_pio_t* pio) | ||||
| 	DWORD n; | ||||
| #elif defined(__OS2__) | ||||
| 	APIRET rc; | ||||
| #elif defined(__DOS__) | ||||
| 	/* TODO: implement this */ | ||||
| #else | ||||
| 	int n; | ||||
| #endif | ||||
| @ -1334,6 +1379,7 @@ int qse_pio_kill (qse_pio_t* pio) | ||||
| 		return -1; | ||||
| 	} | ||||
| 	return 0; | ||||
|  | ||||
| #elif defined(__OS2__) | ||||
| /*TODO: must use DKP_PROCESS? */ | ||||
| 	rc = DosKillProcess (pio->child, DKP_PROCESSTREE); | ||||
| @ -1343,6 +1389,11 @@ int qse_pio_kill (qse_pio_t* pio) | ||||
| 		return -1; | ||||
| 	} | ||||
| 	return 0;	 | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 	/* TODO: implement this*/ | ||||
| 	return -1; | ||||
|  | ||||
| #else | ||||
| 	n = QSE_KILL (pio->child, SIGKILL); | ||||
| 	if (n <= -1) pio->errnum = QSE_PIO_ESUBSYS; | ||||
|  | ||||
| @ -339,7 +339,7 @@ QSE_FILE* qse_fopen (const qse_char_t* path, const qse_char_t* mode) | ||||
| { | ||||
| #if defined(QSE_CHAR_IS_MCHAR) | ||||
| 	return fopen (path, mode); | ||||
| #elif defined(_WIN32) | ||||
| #elif defined(_WIN32) || defined(__OS2__) | ||||
| 	return _wfopen (path, mode); | ||||
| #else | ||||
|  | ||||
| @ -362,13 +362,21 @@ QSE_FILE* qse_fopen (const qse_char_t* path, const qse_char_t* mode) | ||||
| QSE_FILE* qse_popen (const qse_char_t* cmd, const qse_char_t* mode) | ||||
| { | ||||
| #if defined(QSE_CHAR_IS_MCHAR) | ||||
| #if defined(__OS2__) | ||||
|  | ||||
| 	#if defined(__OS2__) | ||||
| 	return _popen (cmd, mode); | ||||
| #else | ||||
| 	#elif defined(__DOS__) | ||||
| 	return QSE_NULL; | ||||
| 	#else | ||||
| 	return popen (cmd, mode); | ||||
| #endif | ||||
| #elif defined(_WIN32) || defined(__OS2__) | ||||
| 	#endif | ||||
|  | ||||
| #elif defined(_WIN32) || defined(__OS2__)  | ||||
| 	return _wpopen (cmd, mode); | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
| 	return QSE_NULL; | ||||
|  | ||||
| #else | ||||
| 	char cmd_mb[PATH_MAX + 1]; | ||||
| 	char mode_mb[32]; | ||||
|  | ||||
| @ -1,5 +1,5 @@ | ||||
| /* | ||||
|  * $Id: time.c 441 2011-04-22 14:28:43Z hyunghwan.chung $ | ||||
|  * $Id: time.c 455 2011-05-09 16:11:13Z hyunghwan.chung $ | ||||
|  * | ||||
|     Copyright 2006-2011 Chung, Hyung-Hwan. | ||||
|     This file is part of QSE. | ||||
| @ -27,6 +27,8 @@ | ||||
| #	define INCL_DOSDATETIME | ||||
| #	define INCL_DOSERRORS | ||||
| #	include <os2.h> | ||||
| #elif defined(__DOS__) | ||||
| #	include <dos.h> | ||||
| #else | ||||
| #	include "syscall.h" | ||||
| #	include <sys/time.h> | ||||
| @ -119,6 +121,27 @@ int qse_gettime (qse_ntime_t* t) | ||||
| 	if (qse_timelocal (&bt, t) <= -1) return -1; | ||||
| 	return 0; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
|  | ||||
| 	struct dostime_t dt; | ||||
| 	struct dosdate_t dd; | ||||
| 	qse_btime_t bt; | ||||
|  | ||||
| 	_dos_gettime (&dt); | ||||
| 	_dos_getdate (&dd); | ||||
|  | ||||
| 	bt.year = dd.year - 1900; | ||||
| 	bt.mon = dd.month - 1; | ||||
| 	bt.mday = dd.day; | ||||
| 	bt.hour = dt.hour; | ||||
| 	bt.min = dt.minute; | ||||
| 	bt.sec = dt.second; | ||||
| 	bt.msec = dt.hsecond * 10; | ||||
| 	bt.isdst = -1; | ||||
|  | ||||
| 	if (qse_timelocal (&bt, t) <= -1) return -1; | ||||
| 	return 0; | ||||
|  | ||||
| #else | ||||
| 	struct timeval tv; | ||||
| 	int n; | ||||
| @ -142,6 +165,7 @@ int qse_settime (qse_ntime_t t) | ||||
| 	if (FileTimeToSystemTime (&ft, &st) == FALSE) return -1; | ||||
| 	if (SetSystemTime(&st) == FALSE) return -1; | ||||
| 	return 0; | ||||
|  | ||||
| #elif defined(__OS2__) | ||||
|  | ||||
| 	APIRET rc; | ||||
| @ -161,6 +185,28 @@ int qse_settime (qse_ntime_t t) | ||||
|  | ||||
| 	rc = DosSetDateTime (&dt); | ||||
| 	return (rc != NO_ERROR)? -1: 0; | ||||
|  | ||||
| #elif defined(__DOS__) | ||||
|  | ||||
| 	struct dostime_t dt; | ||||
| 	struct dosdate_t dd; | ||||
| 	qse_btime_t bt; | ||||
|  | ||||
| 	if (qse_localtime (t, &bt) <= -1) return -1; | ||||
|  | ||||
| 	dd.year = bt.year + 1900; | ||||
| 	dd.month = bt.mon + 1; | ||||
| 	dd.day = bt.mday; | ||||
| 	dt.hour = bt.hour; | ||||
| 	dt.minute = bt.min; | ||||
| 	dt.second = bt.sec; | ||||
| 	dt.hsecond = bt.msec / 10; | ||||
|  | ||||
| 	if (_dos_settime (&dt) != 0) return -1; | ||||
| 	if (_dos_setdate (&dd) != 0) return -1; | ||||
|  | ||||
| 	return 0; | ||||
|  | ||||
| #else | ||||
| 	struct timeval tv; | ||||
| 	int n; | ||||
| @ -275,6 +321,13 @@ int qse_localtime (qse_ntime_t nt, qse_btime_t* bt) | ||||
| #	else | ||||
| #		error Please support other compilers that I didn't try. | ||||
| #	endif | ||||
| #elif defined(__DOS__) | ||||
| #	if defined(__WATCOMC__) | ||||
| 		struct tm btm; | ||||
| 		tm = _localtime (&t, &btm); | ||||
| #	else | ||||
| #		error Please support other compilers that I didn't try. | ||||
| #	endif | ||||
| #else | ||||
| 	struct tm btm; | ||||
| 	tm = localtime_r (&t, &btm); | ||||
| @ -322,6 +375,8 @@ int qse_timegm (const qse_btime_t* bt, qse_ntime_t* nt) | ||||
| 	return 0; | ||||
| #elif defined(__OS2__) | ||||
| #	error NOT IMPLEMENTED YET | ||||
| #elif defined(__DOS__) | ||||
| #	error NOT IMPLEMENTED YET | ||||
| #else | ||||
|  | ||||
| 	/* TODO: qse_timegm - remove dependency on timegm */ | ||||
|  | ||||
							
								
								
									
										129
									
								
								qse/watcom/debug/dos32/cmd/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										129
									
								
								qse/watcom/debug/dos32/cmd/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,129 @@ | ||||
| 40 | ||||
| targetIdent | ||||
| 0 | ||||
| MProject | ||||
| 1 | ||||
| MComponent | ||||
| 0 | ||||
| 2 | ||||
| WString | ||||
| 3 | ||||
| EXE | ||||
| 3 | ||||
| WString | ||||
| 5 | ||||
| dr2eo | ||||
| 1 | ||||
| 0 | ||||
| 1 | ||||
| 4 | ||||
| MCommand | ||||
| 0 | ||||
| 5 | ||||
| MCommand | ||||
| 0 | ||||
| 6 | ||||
| MItem | ||||
| 10 | ||||
| qseawk.exe | ||||
| 7 | ||||
| WString | ||||
| 3 | ||||
| EXE | ||||
| 8 | ||||
| WVList | ||||
| 2 | ||||
| 9 | ||||
| MVState | ||||
| 10 | ||||
| WString | ||||
| 5 | ||||
| WLINK | ||||
| 11 | ||||
| WString | ||||
| 28 | ||||
| ?????Library directories(;): | ||||
| 1 | ||||
| 12 | ||||
| WString | ||||
| 27 | ||||
| ../../lib/cmn ../../lib/awk | ||||
| 0 | ||||
| 13 | ||||
| MVState | ||||
| 14 | ||||
| WString | ||||
| 5 | ||||
| WLINK | ||||
| 15 | ||||
| WString | ||||
| 18 | ||||
| ?????Libraries(,): | ||||
| 1 | ||||
| 16 | ||||
| WString | ||||
| 13 | ||||
| qsecmn qseawk | ||||
| 0 | ||||
| 17 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 18 | ||||
| WPickList | ||||
| 2 | ||||
| 19 | ||||
| MItem | ||||
| 3 | ||||
| *.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 21 | ||||
| WVList | ||||
| 1 | ||||
| 22 | ||||
| MVState | ||||
| 23 | ||||
| WString | ||||
| 3 | ||||
| WCC | ||||
| 24 | ||||
| WString | ||||
| 25 | ||||
| d????Include directories: | ||||
| 1 | ||||
| 25 | ||||
| WString | ||||
| 37 | ||||
| "$(%watcom)/h;../../../../../include" | ||||
| 0 | ||||
| 26 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../cmd/awk/awk.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 29 | ||||
| WVList | ||||
| 0 | ||||
| 30 | ||||
| WVList | ||||
| 0 | ||||
| 19 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
							
								
								
									
										457
									
								
								qse/watcom/debug/dos32/lib/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										457
									
								
								qse/watcom/debug/dos32/lib/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,457 @@ | ||||
| 40 | ||||
| targetIdent | ||||
| 0 | ||||
| MProject | ||||
| 1 | ||||
| MComponent | ||||
| 0 | ||||
| 2 | ||||
| WString | ||||
| 3 | ||||
| LIB | ||||
| 3 | ||||
| WString | ||||
| 5 | ||||
| d_2so | ||||
| 1 | ||||
| 0 | ||||
| 1 | ||||
| 4 | ||||
| MCommand | ||||
| 0 | ||||
| 5 | ||||
| MCommand | ||||
| 0 | ||||
| 6 | ||||
| MItem | ||||
| 10 | ||||
| qseawk.lib | ||||
| 7 | ||||
| WString | ||||
| 3 | ||||
| LIB | ||||
| 8 | ||||
| WVList | ||||
| 0 | ||||
| 9 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 10 | ||||
| WPickList | ||||
| 22 | ||||
| 11 | ||||
| MItem | ||||
| 3 | ||||
| *.c | ||||
| 12 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 13 | ||||
| WVList | ||||
| 1 | ||||
| 14 | ||||
| MVState | ||||
| 15 | ||||
| WString | ||||
| 3 | ||||
| WCC | ||||
| 16 | ||||
| WString | ||||
| 25 | ||||
| d????Include directories: | ||||
| 1 | ||||
| 17 | ||||
| WString | ||||
| 37 | ||||
| "$(%watcom)/h;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/awk.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 21 | ||||
| WVList | ||||
| 0 | ||||
| 22 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 23 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/err.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 25 | ||||
| WVList | ||||
| 0 | ||||
| 26 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/fnc.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 29 | ||||
| WVList | ||||
| 0 | ||||
| 30 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 31 | ||||
| MItem | ||||
| 29 | ||||
| ../../../../../lib/awk/misc.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 33 | ||||
| WVList | ||||
| 0 | ||||
| 34 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 35 | ||||
| MItem | ||||
| 30 | ||||
| ../../../../../lib/awk/parse.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 37 | ||||
| WVList | ||||
| 0 | ||||
| 38 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/rec.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 41 | ||||
| WVList | ||||
| 0 | ||||
| 42 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/rio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 45 | ||||
| WVList | ||||
| 0 | ||||
| 46 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/run.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 49 | ||||
| WVList | ||||
| 0 | ||||
| 50 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/std.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 53 | ||||
| WVList | ||||
| 0 | ||||
| 54 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 55 | ||||
| MItem | ||||
| 29 | ||||
| ../../../../../lib/awk/tree.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 57 | ||||
| WVList | ||||
| 0 | ||||
| 58 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/val.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 61 | ||||
| WVList | ||||
| 0 | ||||
| 62 | ||||
| WVList | ||||
| 0 | ||||
| 11 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 63 | ||||
| MItem | ||||
| 3 | ||||
| *.h | ||||
| 64 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 65 | ||||
| WVList | ||||
| 0 | ||||
| 66 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/awk.h | ||||
| 68 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 69 | ||||
| WVList | ||||
| 0 | ||||
| 70 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 71 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/err.h | ||||
| 72 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 73 | ||||
| WVList | ||||
| 0 | ||||
| 74 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/fnc.h | ||||
| 76 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 77 | ||||
| WVList | ||||
| 0 | ||||
| 78 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 79 | ||||
| MItem | ||||
| 29 | ||||
| ../../../../../lib/awk/misc.h | ||||
| 80 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 81 | ||||
| WVList | ||||
| 0 | ||||
| 82 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 83 | ||||
| MItem | ||||
| 30 | ||||
| ../../../../../lib/awk/parse.h | ||||
| 84 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 85 | ||||
| WVList | ||||
| 0 | ||||
| 86 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/rio.h | ||||
| 88 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 89 | ||||
| WVList | ||||
| 0 | ||||
| 90 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/run.h | ||||
| 92 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 93 | ||||
| WVList | ||||
| 0 | ||||
| 94 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 95 | ||||
| MItem | ||||
| 29 | ||||
| ../../../../../lib/awk/tree.h | ||||
| 96 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 97 | ||||
| WVList | ||||
| 0 | ||||
| 98 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../lib/awk/val.h | ||||
| 100 | ||||
| WString | ||||
| 3 | ||||
| NIL | ||||
| 101 | ||||
| WVList | ||||
| 0 | ||||
| 102 | ||||
| WVList | ||||
| 0 | ||||
| 63 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| @ -68,7 +68,7 @@ d????Include directories: | ||||
| 17 | ||||
| WString | ||||
| 37 | ||||
| "$(%watcom)/h;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 35 | ||||
| ..\..\..\..\..\lib\cmn\alg_search.c | ||||
| ../../../../../lib/cmn/alg_search.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\alg_sort.c | ||||
| ../../../../../lib/cmn/alg_sort.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 31 | ||||
| ..\..\..\..\..\lib\cmn\assert.c | ||||
| ../../../../../lib/cmn/assert.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\chr.c | ||||
| ../../../../../lib/cmn/chr.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\chr_cnv.c | ||||
| ../../../../../lib/cmn/chr_cnv.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\dll.c | ||||
| ../../../../../lib/cmn/dll.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -188,7 +188,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fio.c | ||||
| ../../../../../lib/cmn/fio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fma.c | ||||
| ../../../../../lib/cmn/fma.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -224,7 +224,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\gdl.c | ||||
| ../../../../../lib/cmn/gdl.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -242,7 +242,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\htb.c | ||||
| ../../../../../lib/cmn/htb.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -260,7 +260,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\lda.c | ||||
| ../../../../../lib/cmn/lda.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -278,7 +278,7 @@ WVList | ||||
| 63 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\main.c | ||||
| ../../../../../lib/cmn/main.c | ||||
| 64 | ||||
| WString | ||||
| 4 | ||||
| @ -296,7 +296,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.c | ||||
| ../../../../../lib/cmn/mem.c | ||||
| 68 | ||||
| WString | ||||
| 4 | ||||
| @ -314,7 +314,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\misc.c | ||||
| ../../../../../lib/cmn/misc.c | ||||
| 72 | ||||
| WString | ||||
| 4 | ||||
| @ -332,7 +332,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\oht.c | ||||
| ../../../../../lib/cmn/oht.c | ||||
| 76 | ||||
| WString | ||||
| 4 | ||||
| @ -350,7 +350,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\opt.c | ||||
| ../../../../../lib/cmn/opt.c | ||||
| 80 | ||||
| WString | ||||
| 4 | ||||
| @ -368,7 +368,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\pio.c | ||||
| ../../../../../lib/cmn/pio.c | ||||
| 84 | ||||
| WString | ||||
| 4 | ||||
| @ -386,7 +386,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rbt.c | ||||
| ../../../../../lib/cmn/rbt.c | ||||
| 88 | ||||
| WString | ||||
| 4 | ||||
| @ -404,7 +404,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rex.c | ||||
| ../../../../../lib/cmn/rex.c | ||||
| 92 | ||||
| WString | ||||
| 4 | ||||
| @ -422,7 +422,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sio.c | ||||
| ../../../../../lib/cmn/sio.c | ||||
| 96 | ||||
| WString | ||||
| 4 | ||||
| @ -440,7 +440,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sll.c | ||||
| ../../../../../lib/cmn/sll.c | ||||
| 100 | ||||
| WString | ||||
| 4 | ||||
| @ -458,7 +458,7 @@ WVList | ||||
| 103 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\cmn\stdio.c | ||||
| ../../../../../lib/cmn/stdio.c | ||||
| 104 | ||||
| WString | ||||
| 4 | ||||
| @ -476,7 +476,7 @@ WVList | ||||
| 107 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_beg.c | ||||
| ../../../../../lib/cmn/str_beg.c | ||||
| 108 | ||||
| WString | ||||
| 4 | ||||
| @ -494,7 +494,7 @@ WVList | ||||
| 111 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cat.c | ||||
| ../../../../../lib/cmn/str_cat.c | ||||
| 112 | ||||
| WString | ||||
| 4 | ||||
| @ -512,7 +512,7 @@ WVList | ||||
| 115 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_chr.c | ||||
| ../../../../../lib/cmn/str_chr.c | ||||
| 116 | ||||
| WString | ||||
| 4 | ||||
| @ -530,7 +530,7 @@ WVList | ||||
| 119 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cmp.c | ||||
| ../../../../../lib/cmn/str_cmp.c | ||||
| 120 | ||||
| WString | ||||
| 4 | ||||
| @ -548,7 +548,7 @@ WVList | ||||
| 123 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cnv.c | ||||
| ../../../../../lib/cmn/str_cnv.c | ||||
| 124 | ||||
| WString | ||||
| 4 | ||||
| @ -566,7 +566,7 @@ WVList | ||||
| 127 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cpy.c | ||||
| ../../../../../lib/cmn/str_cpy.c | ||||
| 128 | ||||
| WString | ||||
| 4 | ||||
| @ -584,7 +584,7 @@ WVList | ||||
| 131 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_del.c | ||||
| ../../../../../lib/cmn/str_del.c | ||||
| 132 | ||||
| WString | ||||
| 4 | ||||
| @ -602,7 +602,7 @@ WVList | ||||
| 135 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_dup.c | ||||
| ../../../../../lib/cmn/str_dup.c | ||||
| 136 | ||||
| WString | ||||
| 4 | ||||
| @ -620,7 +620,7 @@ WVList | ||||
| 139 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynm.c | ||||
| ../../../../../lib/cmn/str_dynm.c | ||||
| 140 | ||||
| WString | ||||
| 4 | ||||
| @ -638,7 +638,7 @@ WVList | ||||
| 143 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynw.c | ||||
| ../../../../../lib/cmn/str_dynw.c | ||||
| 144 | ||||
| WString | ||||
| 4 | ||||
| @ -656,7 +656,7 @@ WVList | ||||
| 147 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_end.c | ||||
| ../../../../../lib/cmn/str_end.c | ||||
| 148 | ||||
| WString | ||||
| 4 | ||||
| @ -674,7 +674,7 @@ WVList | ||||
| 151 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_excl.c | ||||
| ../../../../../lib/cmn/str_excl.c | ||||
| 152 | ||||
| WString | ||||
| 4 | ||||
| @ -692,7 +692,7 @@ WVList | ||||
| 155 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_fcpy.c | ||||
| ../../../../../lib/cmn/str_fcpy.c | ||||
| 156 | ||||
| WString | ||||
| 4 | ||||
| @ -710,7 +710,7 @@ WVList | ||||
| 159 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_incl.c | ||||
| ../../../../../lib/cmn/str_incl.c | ||||
| 160 | ||||
| WString | ||||
| 4 | ||||
| @ -728,7 +728,7 @@ WVList | ||||
| 163 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_len.c | ||||
| ../../../../../lib/cmn/str_len.c | ||||
| 164 | ||||
| WString | ||||
| 4 | ||||
| @ -746,7 +746,7 @@ WVList | ||||
| 167 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_pac.c | ||||
| ../../../../../lib/cmn/str_pac.c | ||||
| 168 | ||||
| WString | ||||
| 4 | ||||
| @ -764,7 +764,7 @@ WVList | ||||
| 171 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_pbrk.c | ||||
| ../../../../../lib/cmn/str_pbrk.c | ||||
| 172 | ||||
| WString | ||||
| 4 | ||||
| @ -782,7 +782,7 @@ WVList | ||||
| 175 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_put.c | ||||
| ../../../../../lib/cmn/str_put.c | ||||
| 176 | ||||
| WString | ||||
| 4 | ||||
| @ -800,7 +800,7 @@ WVList | ||||
| 179 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rev.c | ||||
| ../../../../../lib/cmn/str_rev.c | ||||
| 180 | ||||
| WString | ||||
| 4 | ||||
| @ -818,7 +818,7 @@ WVList | ||||
| 183 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rot.c | ||||
| ../../../../../lib/cmn/str_rot.c | ||||
| 184 | ||||
| WString | ||||
| 4 | ||||
| @ -836,7 +836,7 @@ WVList | ||||
| 187 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_set.c | ||||
| ../../../../../lib/cmn/str_set.c | ||||
| 188 | ||||
| WString | ||||
| 4 | ||||
| @ -854,7 +854,7 @@ WVList | ||||
| 191 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spl.c | ||||
| ../../../../../lib/cmn/str_spl.c | ||||
| 192 | ||||
| WString | ||||
| 4 | ||||
| @ -872,7 +872,7 @@ WVList | ||||
| 195 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spn.c | ||||
| ../../../../../lib/cmn/str_spn.c | ||||
| 196 | ||||
| WString | ||||
| 4 | ||||
| @ -890,7 +890,7 @@ WVList | ||||
| 199 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_str.c | ||||
| ../../../../../lib/cmn/str_str.c | ||||
| 200 | ||||
| WString | ||||
| 4 | ||||
| @ -908,7 +908,7 @@ WVList | ||||
| 203 | ||||
| MItem | ||||
| 34 | ||||
| ..\..\..\..\..\lib\cmn\str_subst.c | ||||
| ../../../../../lib/cmn/str_subst.c | ||||
| 204 | ||||
| WString | ||||
| 4 | ||||
| @ -926,7 +926,7 @@ WVList | ||||
| 207 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_tok.c | ||||
| ../../../../../lib/cmn/str_tok.c | ||||
| 208 | ||||
| WString | ||||
| 4 | ||||
| @ -944,7 +944,7 @@ WVList | ||||
| 211 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_trm.c | ||||
| ../../../../../lib/cmn/str_trm.c | ||||
| 212 | ||||
| WString | ||||
| 4 | ||||
| @ -962,7 +962,7 @@ WVList | ||||
| 215 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_word.c | ||||
| ../../../../../lib/cmn/str_word.c | ||||
| 216 | ||||
| WString | ||||
| 4 | ||||
| @ -980,7 +980,7 @@ WVList | ||||
| 219 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\time.c | ||||
| ../../../../../lib/cmn/time.c | ||||
| 220 | ||||
| WString | ||||
| 4 | ||||
| @ -998,7 +998,7 @@ WVList | ||||
| 223 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\tio.c | ||||
| ../../../../../lib/cmn/tio.c | ||||
| 224 | ||||
| WString | ||||
| 4 | ||||
| @ -1016,7 +1016,7 @@ WVList | ||||
| 227 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_get.c | ||||
| ../../../../../lib/cmn/tio_get.c | ||||
| 228 | ||||
| WString | ||||
| 4 | ||||
| @ -1034,7 +1034,7 @@ WVList | ||||
| 231 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_put.c | ||||
| ../../../../../lib/cmn/tio_put.c | ||||
| 232 | ||||
| WString | ||||
| 4 | ||||
| @ -1052,7 +1052,7 @@ WVList | ||||
| 235 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\xma.c | ||||
| ../../../../../lib/cmn/xma.c | ||||
| 236 | ||||
| WString | ||||
| 4 | ||||
| @ -1088,7 +1088,7 @@ WVList | ||||
| 243 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.h | ||||
| ../../../../../lib/cmn/mem.h | ||||
| 244 | ||||
| WString | ||||
| 3 | ||||
| @ -1106,7 +1106,7 @@ WVList | ||||
| 247 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\syscall.h | ||||
| ../../../../../lib/cmn/syscall.h | ||||
| 248 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -143,7 +143,7 @@ o?2??Include directories: | ||||
| 38 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 39 | ||||
| WVList | ||||
| @ -155,7 +155,7 @@ WVList | ||||
| 40 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\cmd\awk\awk.c | ||||
| ../../../../../cmd/awk/awk.c | ||||
| 41 | ||||
| WString | ||||
| 4 | ||||
|  | ||||
| @ -96,7 +96,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\cmd\scm\scm.c | ||||
| ../../../../../cmd/scm/scm.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -118,7 +118,7 @@ o?2??Include directories: | ||||
| 29 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 30 | ||||
| WVList | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\awk.c | ||||
| ../../../../../lib/awk/awk.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\err.c | ||||
| ../../../../../lib/awk/err.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\fnc.c | ||||
| ../../../../../lib/awk/fnc.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\misc.c | ||||
| ../../../../../lib/awk/misc.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\awk\parse.c | ||||
| ../../../../../lib/awk/parse.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rec.c | ||||
| ../../../../../lib/awk/rec.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -188,7 +188,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rio.c | ||||
| ../../../../../lib/awk/rio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\run.c | ||||
| ../../../../../lib/awk/run.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -224,7 +224,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\std.c | ||||
| ../../../../../lib/awk/std.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -242,7 +242,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\tree.c | ||||
| ../../../../../lib/awk/tree.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -260,7 +260,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\val.c | ||||
| ../../../../../lib/awk/val.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -296,7 +296,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\awk.h | ||||
| ../../../../../lib/awk/awk.h | ||||
| 68 | ||||
| WString | ||||
| 3 | ||||
| @ -314,7 +314,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\err.h | ||||
| ../../../../../lib/awk/err.h | ||||
| 72 | ||||
| WString | ||||
| 3 | ||||
| @ -332,7 +332,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\fnc.h | ||||
| ../../../../../lib/awk/fnc.h | ||||
| 76 | ||||
| WString | ||||
| 3 | ||||
| @ -350,7 +350,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\misc.h | ||||
| ../../../../../lib/awk/misc.h | ||||
| 80 | ||||
| WString | ||||
| 3 | ||||
| @ -368,7 +368,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\awk\parse.h | ||||
| ../../../../../lib/awk/parse.h | ||||
| 84 | ||||
| WString | ||||
| 3 | ||||
| @ -386,7 +386,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rio.h | ||||
| ../../../../../lib/awk/rio.h | ||||
| 88 | ||||
| WString | ||||
| 3 | ||||
| @ -404,7 +404,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\run.h | ||||
| ../../../../../lib/awk/run.h | ||||
| 92 | ||||
| WString | ||||
| 3 | ||||
| @ -422,7 +422,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\tree.h | ||||
| ../../../../../lib/awk/tree.h | ||||
| 96 | ||||
| WString | ||||
| 3 | ||||
| @ -440,7 +440,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\val.h | ||||
| ../../../../../lib/awk/val.h | ||||
| 100 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 35 | ||||
| ..\..\..\..\..\lib\cmn\alg_search.c | ||||
| ../../../../../lib/cmn/alg_search.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\alg_sort.c | ||||
| ../../../../../lib/cmn/alg_sort.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 31 | ||||
| ..\..\..\..\..\lib\cmn\assert.c | ||||
| ../../../../../lib/cmn/assert.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\chr.c | ||||
| ../../../../../lib/cmn/chr.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\chr_cnv.c | ||||
| ../../../../../lib/cmn/chr_cnv.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\dll.c | ||||
| ../../../../../lib/cmn/dll.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -188,7 +188,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fio.c | ||||
| ../../../../../lib/cmn/fio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fma.c | ||||
| ../../../../../lib/cmn/fma.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -224,7 +224,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\gdl.c | ||||
| ../../../../../lib/cmn/gdl.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -242,7 +242,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\htb.c | ||||
| ../../../../../lib/cmn/htb.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -260,7 +260,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\lda.c | ||||
| ../../../../../lib/cmn/lda.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -278,7 +278,7 @@ WVList | ||||
| 63 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\main.c | ||||
| ../../../../../lib/cmn/main.c | ||||
| 64 | ||||
| WString | ||||
| 4 | ||||
| @ -296,7 +296,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.c | ||||
| ../../../../../lib/cmn/mem.c | ||||
| 68 | ||||
| WString | ||||
| 4 | ||||
| @ -314,7 +314,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\misc.c | ||||
| ../../../../../lib/cmn/misc.c | ||||
| 72 | ||||
| WString | ||||
| 4 | ||||
| @ -332,7 +332,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\oht.c | ||||
| ../../../../../lib/cmn/oht.c | ||||
| 76 | ||||
| WString | ||||
| 4 | ||||
| @ -350,7 +350,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\opt.c | ||||
| ../../../../../lib/cmn/opt.c | ||||
| 80 | ||||
| WString | ||||
| 4 | ||||
| @ -368,7 +368,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\pio.c | ||||
| ../../../../../lib/cmn/pio.c | ||||
| 84 | ||||
| WString | ||||
| 4 | ||||
| @ -386,7 +386,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rbt.c | ||||
| ../../../../../lib/cmn/rbt.c | ||||
| 88 | ||||
| WString | ||||
| 4 | ||||
| @ -404,7 +404,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rex.c | ||||
| ../../../../../lib/cmn/rex.c | ||||
| 92 | ||||
| WString | ||||
| 4 | ||||
| @ -422,7 +422,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sio.c | ||||
| ../../../../../lib/cmn/sio.c | ||||
| 96 | ||||
| WString | ||||
| 4 | ||||
| @ -440,7 +440,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sll.c | ||||
| ../../../../../lib/cmn/sll.c | ||||
| 100 | ||||
| WString | ||||
| 4 | ||||
| @ -458,7 +458,7 @@ WVList | ||||
| 103 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\cmn\stdio.c | ||||
| ../../../../../lib/cmn/stdio.c | ||||
| 104 | ||||
| WString | ||||
| 4 | ||||
| @ -476,7 +476,7 @@ WVList | ||||
| 107 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_beg.c | ||||
| ../../../../../lib/cmn/str_beg.c | ||||
| 108 | ||||
| WString | ||||
| 4 | ||||
| @ -494,7 +494,7 @@ WVList | ||||
| 111 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cat.c | ||||
| ../../../../../lib/cmn/str_cat.c | ||||
| 112 | ||||
| WString | ||||
| 4 | ||||
| @ -512,7 +512,7 @@ WVList | ||||
| 115 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_chr.c | ||||
| ../../../../../lib/cmn/str_chr.c | ||||
| 116 | ||||
| WString | ||||
| 4 | ||||
| @ -530,7 +530,7 @@ WVList | ||||
| 119 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cmp.c | ||||
| ../../../../../lib/cmn/str_cmp.c | ||||
| 120 | ||||
| WString | ||||
| 4 | ||||
| @ -548,7 +548,7 @@ WVList | ||||
| 123 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cnv.c | ||||
| ../../../../../lib/cmn/str_cnv.c | ||||
| 124 | ||||
| WString | ||||
| 4 | ||||
| @ -566,7 +566,7 @@ WVList | ||||
| 127 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cpy.c | ||||
| ../../../../../lib/cmn/str_cpy.c | ||||
| 128 | ||||
| WString | ||||
| 4 | ||||
| @ -584,7 +584,7 @@ WVList | ||||
| 131 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_del.c | ||||
| ../../../../../lib/cmn/str_del.c | ||||
| 132 | ||||
| WString | ||||
| 4 | ||||
| @ -602,7 +602,7 @@ WVList | ||||
| 135 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_dup.c | ||||
| ../../../../../lib/cmn/str_dup.c | ||||
| 136 | ||||
| WString | ||||
| 4 | ||||
| @ -620,7 +620,7 @@ WVList | ||||
| 139 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynm.c | ||||
| ../../../../../lib/cmn/str_dynm.c | ||||
| 140 | ||||
| WString | ||||
| 4 | ||||
| @ -638,7 +638,7 @@ WVList | ||||
| 143 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynw.c | ||||
| ../../../../../lib/cmn/str_dynw.c | ||||
| 144 | ||||
| WString | ||||
| 4 | ||||
| @ -656,7 +656,7 @@ WVList | ||||
| 147 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_end.c | ||||
| ../../../../../lib/cmn/str_end.c | ||||
| 148 | ||||
| WString | ||||
| 4 | ||||
| @ -674,7 +674,7 @@ WVList | ||||
| 151 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_excl.c | ||||
| ../../../../../lib/cmn/str_excl.c | ||||
| 152 | ||||
| WString | ||||
| 4 | ||||
| @ -692,7 +692,7 @@ WVList | ||||
| 155 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_fcpy.c | ||||
| ../../../../../lib/cmn/str_fcpy.c | ||||
| 156 | ||||
| WString | ||||
| 4 | ||||
| @ -710,7 +710,7 @@ WVList | ||||
| 159 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_incl.c | ||||
| ../../../../../lib/cmn/str_incl.c | ||||
| 160 | ||||
| WString | ||||
| 4 | ||||
| @ -728,7 +728,7 @@ WVList | ||||
| 163 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_len.c | ||||
| ../../../../../lib/cmn/str_len.c | ||||
| 164 | ||||
| WString | ||||
| 4 | ||||
| @ -746,7 +746,7 @@ WVList | ||||
| 167 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_pac.c | ||||
| ../../../../../lib/cmn/str_pac.c | ||||
| 168 | ||||
| WString | ||||
| 4 | ||||
| @ -764,7 +764,7 @@ WVList | ||||
| 171 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_pbrk.c | ||||
| ../../../../../lib/cmn/str_pbrk.c | ||||
| 172 | ||||
| WString | ||||
| 4 | ||||
| @ -782,7 +782,7 @@ WVList | ||||
| 175 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_put.c | ||||
| ../../../../../lib/cmn/str_put.c | ||||
| 176 | ||||
| WString | ||||
| 4 | ||||
| @ -800,7 +800,7 @@ WVList | ||||
| 179 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rev.c | ||||
| ../../../../../lib/cmn/str_rev.c | ||||
| 180 | ||||
| WString | ||||
| 4 | ||||
| @ -818,7 +818,7 @@ WVList | ||||
| 183 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rot.c | ||||
| ../../../../../lib/cmn/str_rot.c | ||||
| 184 | ||||
| WString | ||||
| 4 | ||||
| @ -836,7 +836,7 @@ WVList | ||||
| 187 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_set.c | ||||
| ../../../../../lib/cmn/str_set.c | ||||
| 188 | ||||
| WString | ||||
| 4 | ||||
| @ -854,7 +854,7 @@ WVList | ||||
| 191 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spl.c | ||||
| ../../../../../lib/cmn/str_spl.c | ||||
| 192 | ||||
| WString | ||||
| 4 | ||||
| @ -872,7 +872,7 @@ WVList | ||||
| 195 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spn.c | ||||
| ../../../../../lib/cmn/str_spn.c | ||||
| 196 | ||||
| WString | ||||
| 4 | ||||
| @ -890,7 +890,7 @@ WVList | ||||
| 199 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_str.c | ||||
| ../../../../../lib/cmn/str_str.c | ||||
| 200 | ||||
| WString | ||||
| 4 | ||||
| @ -908,7 +908,7 @@ WVList | ||||
| 203 | ||||
| MItem | ||||
| 34 | ||||
| ..\..\..\..\..\lib\cmn\str_subst.c | ||||
| ../../../../../lib/cmn/str_subst.c | ||||
| 204 | ||||
| WString | ||||
| 4 | ||||
| @ -926,7 +926,7 @@ WVList | ||||
| 207 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_tok.c | ||||
| ../../../../../lib/cmn/str_tok.c | ||||
| 208 | ||||
| WString | ||||
| 4 | ||||
| @ -944,7 +944,7 @@ WVList | ||||
| 211 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_trm.c | ||||
| ../../../../../lib/cmn/str_trm.c | ||||
| 212 | ||||
| WString | ||||
| 4 | ||||
| @ -962,7 +962,7 @@ WVList | ||||
| 215 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_word.c | ||||
| ../../../../../lib/cmn/str_word.c | ||||
| 216 | ||||
| WString | ||||
| 4 | ||||
| @ -980,7 +980,7 @@ WVList | ||||
| 219 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\time.c | ||||
| ../../../../../lib/cmn/time.c | ||||
| 220 | ||||
| WString | ||||
| 4 | ||||
| @ -998,7 +998,7 @@ WVList | ||||
| 223 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\tio.c | ||||
| ../../../../../lib/cmn/tio.c | ||||
| 224 | ||||
| WString | ||||
| 4 | ||||
| @ -1016,7 +1016,7 @@ WVList | ||||
| 227 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_get.c | ||||
| ../../../../../lib/cmn/tio_get.c | ||||
| 228 | ||||
| WString | ||||
| 4 | ||||
| @ -1034,7 +1034,7 @@ WVList | ||||
| 231 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_put.c | ||||
| ../../../../../lib/cmn/tio_put.c | ||||
| 232 | ||||
| WString | ||||
| 4 | ||||
| @ -1052,7 +1052,7 @@ WVList | ||||
| 235 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\xma.c | ||||
| ../../../../../lib/cmn/xma.c | ||||
| 236 | ||||
| WString | ||||
| 4 | ||||
| @ -1088,7 +1088,7 @@ WVList | ||||
| 243 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.h | ||||
| ../../../../../lib/cmn/mem.h | ||||
| 244 | ||||
| WString | ||||
| 3 | ||||
| @ -1106,7 +1106,7 @@ WVList | ||||
| 247 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\syscall.h | ||||
| ../../../../../lib/cmn/syscall.h | ||||
| 248 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\err.c | ||||
| ../../../../../lib/scm/err.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\scm\eval.c | ||||
| ../../../../../lib/scm/eval.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\mem.c | ||||
| ../../../../../lib/scm/mem.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\scm\print.c | ||||
| ../../../../../lib/scm/print.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\scm\read.c | ||||
| ../../../../../lib/scm/read.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\scm.c | ||||
| ../../../../../lib/scm/scm.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\scm.h | ||||
| ../../../../../lib/scm/scm.h | ||||
| 48 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\sed\err.c | ||||
| ../../../../../lib/sed/err.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\sed\sed.c | ||||
| ../../../../../lib/sed/sed.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\sed\std.c | ||||
| ../../../../../lib/sed/std.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\sed\sed.h | ||||
| ../../../../../lib/sed/sed.h | ||||
| 36 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
							
								
								
									
										129
									
								
								qse/watcom/debug/win32/cmd/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										129
									
								
								qse/watcom/debug/win32/cmd/awk/qseawk.tgt
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,129 @@ | ||||
| 40 | ||||
| targetIdent | ||||
| 0 | ||||
| MProject | ||||
| 1 | ||||
| MComponent | ||||
| 0 | ||||
| 2 | ||||
| WString | ||||
| 4 | ||||
| NEXE | ||||
| 3 | ||||
| WString | ||||
| 5 | ||||
| nc2eo | ||||
| 1 | ||||
| 0 | ||||
| 1 | ||||
| 4 | ||||
| MCommand | ||||
| 0 | ||||
| 5 | ||||
| MCommand | ||||
| 0 | ||||
| 6 | ||||
| MItem | ||||
| 10 | ||||
| qseawk.exe | ||||
| 7 | ||||
| WString | ||||
| 4 | ||||
| NEXE | ||||
| 8 | ||||
| WVList | ||||
| 2 | ||||
| 9 | ||||
| MVState | ||||
| 10 | ||||
| WString | ||||
| 7 | ||||
| WINLINK | ||||
| 11 | ||||
| WString | ||||
| 28 | ||||
| ?????Library directories(;): | ||||
| 1 | ||||
| 12 | ||||
| WString | ||||
| 27 | ||||
| ../../lib/cmn ../../lib/awk | ||||
| 0 | ||||
| 13 | ||||
| MVState | ||||
| 14 | ||||
| WString | ||||
| 7 | ||||
| WINLINK | ||||
| 15 | ||||
| WString | ||||
| 18 | ||||
| ?????Libraries(,): | ||||
| 1 | ||||
| 16 | ||||
| WString | ||||
| 19 | ||||
| qsecmn qseawk psapi | ||||
| 0 | ||||
| 17 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 18 | ||||
| WPickList | ||||
| 2 | ||||
| 19 | ||||
| MItem | ||||
| 3 | ||||
| *.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 21 | ||||
| WVList | ||||
| 1 | ||||
| 22 | ||||
| MVState | ||||
| 23 | ||||
| WString | ||||
| 3 | ||||
| WCC | ||||
| 24 | ||||
| WString | ||||
| 25 | ||||
| n????Include directories: | ||||
| 1 | ||||
| 25 | ||||
| WString | ||||
| 53 | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" | ||||
| 0 | ||||
| 26 | ||||
| WVList | ||||
| 0 | ||||
| -1 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ../../../../../cmd/awk/awk.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| COBJ | ||||
| 29 | ||||
| WVList | ||||
| 0 | ||||
| 30 | ||||
| WVList | ||||
| 0 | ||||
| 19 | ||||
| 1 | ||||
| 1 | ||||
| 0 | ||||
| @ -109,7 +109,7 @@ n????Include directories: | ||||
| 28 | ||||
| WString | ||||
| 53 | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" | ||||
| 0 | ||||
| 29 | ||||
| WVList | ||||
| @ -130,7 +130,7 @@ WVList | ||||
| 33 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\cmd\scm\scm.c | ||||
| ../../../../../cmd/scm/scm.c | ||||
| 34 | ||||
| WString | ||||
| 4 | ||||
|  | ||||
| @ -68,7 +68,7 @@ n????Include directories: | ||||
| 17 | ||||
| WString | ||||
| 53 | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\awk.c | ||||
| ../../../../../lib/awk/awk.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\err.c | ||||
| ../../../../../lib/awk/err.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\fnc.c | ||||
| ../../../../../lib/awk/fnc.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\misc.c | ||||
| ../../../../../lib/awk/misc.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\awk\parse.c | ||||
| ../../../../../lib/awk/parse.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rec.c | ||||
| ../../../../../lib/awk/rec.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -188,7 +188,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rio.c | ||||
| ../../../../../lib/awk/rio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\run.c | ||||
| ../../../../../lib/awk/run.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -224,7 +224,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\std.c | ||||
| ../../../../../lib/awk/std.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -242,7 +242,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\tree.c | ||||
| ../../../../../lib/awk/tree.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -260,7 +260,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\val.c | ||||
| ../../../../../lib/awk/val.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -296,7 +296,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\awk.h | ||||
| ../../../../../lib/awk/awk.h | ||||
| 68 | ||||
| WString | ||||
| 3 | ||||
| @ -314,7 +314,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\err.h | ||||
| ../../../../../lib/awk/err.h | ||||
| 72 | ||||
| WString | ||||
| 3 | ||||
| @ -332,7 +332,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\fnc.h | ||||
| ../../../../../lib/awk/fnc.h | ||||
| 76 | ||||
| WString | ||||
| 3 | ||||
| @ -350,7 +350,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\misc.h | ||||
| ../../../../../lib/awk/misc.h | ||||
| 80 | ||||
| WString | ||||
| 3 | ||||
| @ -368,7 +368,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\awk\parse.h | ||||
| ../../../../../lib/awk/parse.h | ||||
| 84 | ||||
| WString | ||||
| 3 | ||||
| @ -386,7 +386,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\rio.h | ||||
| ../../../../../lib/awk/rio.h | ||||
| 88 | ||||
| WString | ||||
| 3 | ||||
| @ -404,7 +404,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\run.h | ||||
| ../../../../../lib/awk/run.h | ||||
| 92 | ||||
| WString | ||||
| 3 | ||||
| @ -422,7 +422,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\awk\tree.h | ||||
| ../../../../../lib/awk/tree.h | ||||
| 96 | ||||
| WString | ||||
| 3 | ||||
| @ -440,7 +440,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\awk\val.h | ||||
| ../../../../../lib/awk/val.h | ||||
| 100 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ n????Include directories: | ||||
| 17 | ||||
| WString | ||||
| 53 | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 35 | ||||
| ..\..\..\..\..\lib\cmn\alg_search.c | ||||
| ../../../../../lib/cmn/alg_search.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\alg_sort.c | ||||
| ../../../../../lib/cmn/alg_sort.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 31 | ||||
| ..\..\..\..\..\lib\cmn\assert.c | ||||
| ../../../../../lib/cmn/assert.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\chr.c | ||||
| ../../../../../lib/cmn/chr.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\chr_cnv.c | ||||
| ../../../../../lib/cmn/chr_cnv.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\dll.c | ||||
| ../../../../../lib/cmn/dll.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -188,7 +188,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fio.c | ||||
| ../../../../../lib/cmn/fio.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fma.c | ||||
| ../../../../../lib/cmn/fma.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -224,7 +224,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\gdl.c | ||||
| ../../../../../lib/cmn/gdl.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -242,7 +242,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\htb.c | ||||
| ../../../../../lib/cmn/htb.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -260,7 +260,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\lda.c | ||||
| ../../../../../lib/cmn/lda.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -278,7 +278,7 @@ WVList | ||||
| 63 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\main.c | ||||
| ../../../../../lib/cmn/main.c | ||||
| 64 | ||||
| WString | ||||
| 4 | ||||
| @ -296,7 +296,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.c | ||||
| ../../../../../lib/cmn/mem.c | ||||
| 68 | ||||
| WString | ||||
| 4 | ||||
| @ -314,7 +314,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\misc.c | ||||
| ../../../../../lib/cmn/misc.c | ||||
| 72 | ||||
| WString | ||||
| 4 | ||||
| @ -332,7 +332,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\oht.c | ||||
| ../../../../../lib/cmn/oht.c | ||||
| 76 | ||||
| WString | ||||
| 4 | ||||
| @ -350,7 +350,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\opt.c | ||||
| ../../../../../lib/cmn/opt.c | ||||
| 80 | ||||
| WString | ||||
| 4 | ||||
| @ -368,7 +368,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\pio.c | ||||
| ../../../../../lib/cmn/pio.c | ||||
| 84 | ||||
| WString | ||||
| 4 | ||||
| @ -386,7 +386,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rbt.c | ||||
| ../../../../../lib/cmn/rbt.c | ||||
| 88 | ||||
| WString | ||||
| 4 | ||||
| @ -404,7 +404,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rex.c | ||||
| ../../../../../lib/cmn/rex.c | ||||
| 92 | ||||
| WString | ||||
| 4 | ||||
| @ -422,7 +422,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sio.c | ||||
| ../../../../../lib/cmn/sio.c | ||||
| 96 | ||||
| WString | ||||
| 4 | ||||
| @ -440,7 +440,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sll.c | ||||
| ../../../../../lib/cmn/sll.c | ||||
| 100 | ||||
| WString | ||||
| 4 | ||||
| @ -458,7 +458,7 @@ WVList | ||||
| 103 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\cmn\stdio.c | ||||
| ../../../../../lib/cmn/stdio.c | ||||
| 104 | ||||
| WString | ||||
| 4 | ||||
| @ -476,7 +476,7 @@ WVList | ||||
| 107 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_beg.c | ||||
| ../../../../../lib/cmn/str_beg.c | ||||
| 108 | ||||
| WString | ||||
| 4 | ||||
| @ -494,7 +494,7 @@ WVList | ||||
| 111 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cat.c | ||||
| ../../../../../lib/cmn/str_cat.c | ||||
| 112 | ||||
| WString | ||||
| 4 | ||||
| @ -512,7 +512,7 @@ WVList | ||||
| 115 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_chr.c | ||||
| ../../../../../lib/cmn/str_chr.c | ||||
| 116 | ||||
| WString | ||||
| 4 | ||||
| @ -530,7 +530,7 @@ WVList | ||||
| 119 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cmp.c | ||||
| ../../../../../lib/cmn/str_cmp.c | ||||
| 120 | ||||
| WString | ||||
| 4 | ||||
| @ -548,7 +548,7 @@ WVList | ||||
| 123 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cnv.c | ||||
| ../../../../../lib/cmn/str_cnv.c | ||||
| 124 | ||||
| WString | ||||
| 4 | ||||
| @ -566,7 +566,7 @@ WVList | ||||
| 127 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cpy.c | ||||
| ../../../../../lib/cmn/str_cpy.c | ||||
| 128 | ||||
| WString | ||||
| 4 | ||||
| @ -584,7 +584,7 @@ WVList | ||||
| 131 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_del.c | ||||
| ../../../../../lib/cmn/str_del.c | ||||
| 132 | ||||
| WString | ||||
| 4 | ||||
| @ -602,7 +602,7 @@ WVList | ||||
| 135 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_dup.c | ||||
| ../../../../../lib/cmn/str_dup.c | ||||
| 136 | ||||
| WString | ||||
| 4 | ||||
| @ -620,7 +620,7 @@ WVList | ||||
| 139 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynm.c | ||||
| ../../../../../lib/cmn/str_dynm.c | ||||
| 140 | ||||
| WString | ||||
| 4 | ||||
| @ -638,7 +638,7 @@ WVList | ||||
| 143 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynw.c | ||||
| ../../../../../lib/cmn/str_dynw.c | ||||
| 144 | ||||
| WString | ||||
| 4 | ||||
| @ -656,7 +656,7 @@ WVList | ||||
| 147 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_end.c | ||||
| ../../../../../lib/cmn/str_end.c | ||||
| 148 | ||||
| WString | ||||
| 4 | ||||
| @ -674,7 +674,7 @@ WVList | ||||
| 151 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_excl.c | ||||
| ../../../../../lib/cmn/str_excl.c | ||||
| 152 | ||||
| WString | ||||
| 4 | ||||
| @ -692,7 +692,7 @@ WVList | ||||
| 155 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_fcpy.c | ||||
| ../../../../../lib/cmn/str_fcpy.c | ||||
| 156 | ||||
| WString | ||||
| 4 | ||||
| @ -710,7 +710,7 @@ WVList | ||||
| 159 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_incl.c | ||||
| ../../../../../lib/cmn/str_incl.c | ||||
| 160 | ||||
| WString | ||||
| 4 | ||||
| @ -728,7 +728,7 @@ WVList | ||||
| 163 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_len.c | ||||
| ../../../../../lib/cmn/str_len.c | ||||
| 164 | ||||
| WString | ||||
| 4 | ||||
| @ -746,7 +746,7 @@ WVList | ||||
| 167 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_pac.c | ||||
| ../../../../../lib/cmn/str_pac.c | ||||
| 168 | ||||
| WString | ||||
| 4 | ||||
| @ -764,7 +764,7 @@ WVList | ||||
| 171 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_pbrk.c | ||||
| ../../../../../lib/cmn/str_pbrk.c | ||||
| 172 | ||||
| WString | ||||
| 4 | ||||
| @ -782,7 +782,7 @@ WVList | ||||
| 175 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_put.c | ||||
| ../../../../../lib/cmn/str_put.c | ||||
| 176 | ||||
| WString | ||||
| 4 | ||||
| @ -800,7 +800,7 @@ WVList | ||||
| 179 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rev.c | ||||
| ../../../../../lib/cmn/str_rev.c | ||||
| 180 | ||||
| WString | ||||
| 4 | ||||
| @ -818,7 +818,7 @@ WVList | ||||
| 183 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rot.c | ||||
| ../../../../../lib/cmn/str_rot.c | ||||
| 184 | ||||
| WString | ||||
| 4 | ||||
| @ -836,7 +836,7 @@ WVList | ||||
| 187 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_set.c | ||||
| ../../../../../lib/cmn/str_set.c | ||||
| 188 | ||||
| WString | ||||
| 4 | ||||
| @ -854,7 +854,7 @@ WVList | ||||
| 191 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spl.c | ||||
| ../../../../../lib/cmn/str_spl.c | ||||
| 192 | ||||
| WString | ||||
| 4 | ||||
| @ -872,7 +872,7 @@ WVList | ||||
| 195 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spn.c | ||||
| ../../../../../lib/cmn/str_spn.c | ||||
| 196 | ||||
| WString | ||||
| 4 | ||||
| @ -890,7 +890,7 @@ WVList | ||||
| 199 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_str.c | ||||
| ../../../../../lib/cmn/str_str.c | ||||
| 200 | ||||
| WString | ||||
| 4 | ||||
| @ -908,7 +908,7 @@ WVList | ||||
| 203 | ||||
| MItem | ||||
| 34 | ||||
| ..\..\..\..\..\lib\cmn\str_subst.c | ||||
| ../../../../../lib/cmn/str_subst.c | ||||
| 204 | ||||
| WString | ||||
| 4 | ||||
| @ -926,7 +926,7 @@ WVList | ||||
| 207 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_tok.c | ||||
| ../../../../../lib/cmn/str_tok.c | ||||
| 208 | ||||
| WString | ||||
| 4 | ||||
| @ -944,7 +944,7 @@ WVList | ||||
| 211 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_trm.c | ||||
| ../../../../../lib/cmn/str_trm.c | ||||
| 212 | ||||
| WString | ||||
| 4 | ||||
| @ -962,7 +962,7 @@ WVList | ||||
| 215 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_word.c | ||||
| ../../../../../lib/cmn/str_word.c | ||||
| 216 | ||||
| WString | ||||
| 4 | ||||
| @ -980,7 +980,7 @@ WVList | ||||
| 219 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\time.c | ||||
| ../../../../../lib/cmn/time.c | ||||
| 220 | ||||
| WString | ||||
| 4 | ||||
| @ -998,7 +998,7 @@ WVList | ||||
| 223 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\tio.c | ||||
| ../../../../../lib/cmn/tio.c | ||||
| 224 | ||||
| WString | ||||
| 4 | ||||
| @ -1016,7 +1016,7 @@ WVList | ||||
| 227 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_get.c | ||||
| ../../../../../lib/cmn/tio_get.c | ||||
| 228 | ||||
| WString | ||||
| 4 | ||||
| @ -1034,7 +1034,7 @@ WVList | ||||
| 231 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_put.c | ||||
| ../../../../../lib/cmn/tio_put.c | ||||
| 232 | ||||
| WString | ||||
| 4 | ||||
| @ -1052,7 +1052,7 @@ WVList | ||||
| 235 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\xma.c | ||||
| ../../../../../lib/cmn/xma.c | ||||
| 236 | ||||
| WString | ||||
| 4 | ||||
| @ -1088,7 +1088,7 @@ WVList | ||||
| 243 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.h | ||||
| ../../../../../lib/cmn/mem.h | ||||
| 244 | ||||
| WString | ||||
| 3 | ||||
| @ -1106,7 +1106,7 @@ WVList | ||||
| 247 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\syscall.h | ||||
| ../../../../../lib/cmn/syscall.h | ||||
| 248 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ n????Include directories: | ||||
| 17 | ||||
| WString | ||||
| 53 | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| WVList | ||||
| @ -80,7 +80,7 @@ WVList | ||||
| 19 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\err.c | ||||
| ../../../../../lib/scm/err.c | ||||
| 20 | ||||
| WString | ||||
| 4 | ||||
| @ -98,7 +98,7 @@ WVList | ||||
| 23 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\scm\eval.c | ||||
| ../../../../../lib/scm/eval.c | ||||
| 24 | ||||
| WString | ||||
| 4 | ||||
| @ -116,7 +116,7 @@ WVList | ||||
| 27 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\mem.c | ||||
| ../../../../../lib/scm/mem.c | ||||
| 28 | ||||
| WString | ||||
| 4 | ||||
| @ -134,7 +134,7 @@ WVList | ||||
| 31 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\scm\print.c | ||||
| ../../../../../lib/scm/print.c | ||||
| 32 | ||||
| WString | ||||
| 4 | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\scm\read.c | ||||
| ../../../../../lib/scm/read.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -170,7 +170,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\scm.c | ||||
| ../../../../../lib/scm/scm.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -206,7 +206,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\scm\scm.h | ||||
| ../../../../../lib/scm/scm.h | ||||
| 48 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -16,7 +16,7 @@ MCommand | ||||
| 4 | ||||
| MCommand | ||||
| 0 | ||||
| 15 | ||||
| 18 | ||||
| 5 | ||||
| WFileName | ||||
| 30 | ||||
| @ -78,11 +78,23 @@ WFileName | ||||
| 30 | ||||
| debug/dos32/lib/cmn/qsecmn.tgt | ||||
| 20 | ||||
| WVList | ||||
| 15 | ||||
| WFileName | ||||
| 30 | ||||
| debug/dos32/lib/awk/qseawk.tgt | ||||
| 21 | ||||
| VComponent | ||||
| WFileName | ||||
| 30 | ||||
| debug/dos32/cmd/awk/qseawk.tgt | ||||
| 22 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/cmd/awk/qseawk.tgt | ||||
| 23 | ||||
| WVList | ||||
| 18 | ||||
| 24 | ||||
| VComponent | ||||
| 25 | ||||
| WRect | ||||
| 410 | ||||
| 1880 | ||||
| @ -90,15 +102,15 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 23 | ||||
| 26 | ||||
| WFileName | ||||
| 30 | ||||
| release/os2/lib/cmn/qsecmn.tgt | ||||
| 28 | ||||
| 29 | ||||
| 24 | ||||
| 27 | ||||
| VComponent | ||||
| 25 | ||||
| 28 | ||||
| WRect | ||||
| 90 | ||||
| 1240 | ||||
| @ -106,15 +118,15 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 26 | ||||
| 29 | ||||
| WFileName | ||||
| 30 | ||||
| release/os2/lib/sed/qsesed.tgt | ||||
| 0 | ||||
| 0 | ||||
| 27 | ||||
| 30 | ||||
| VComponent | ||||
| 28 | ||||
| 31 | ||||
| WRect | ||||
| 2100 | ||||
| 1400 | ||||
| @ -122,15 +134,15 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 29 | ||||
| 32 | ||||
| WFileName | ||||
| 30 | ||||
| release/os2/cmd/sed/qsesed.tgt | ||||
| 0 | ||||
| 1 | ||||
| 30 | ||||
| 33 | ||||
| VComponent | ||||
| 31 | ||||
| 34 | ||||
| WRect | ||||
| 590 | ||||
| 1080 | ||||
| @ -138,34 +150,18 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 32 | ||||
| 35 | ||||
| WFileName | ||||
| 30 | ||||
| release/os2/lib/scm/qsescm.tgt | ||||
| 0 | ||||
| 0 | ||||
| 33 | ||||
| VComponent | ||||
| 34 | ||||
| WRect | ||||
| 2490 | ||||
| 146 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 35 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/lib/cmn/qsecmn.tgt | ||||
| 0 | ||||
| 0 | ||||
| 36 | ||||
| VComponent | ||||
| 37 | ||||
| WRect | ||||
| 1050 | ||||
| 2360 | ||||
| 2490 | ||||
| 120 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| @ -173,15 +169,15 @@ WRect | ||||
| 38 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/lib/sed/qsesed.tgt | ||||
| debug/os2/lib/cmn/qsecmn.tgt | ||||
| 0 | ||||
| 0 | ||||
| 5 | ||||
| 39 | ||||
| VComponent | ||||
| 40 | ||||
| WRect | ||||
| 1050 | ||||
| 2360 | ||||
| 1280 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| @ -189,15 +185,15 @@ WRect | ||||
| 41 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/lib/scm/qsescm.tgt | ||||
| 0 | ||||
| debug/os2/lib/sed/qsesed.tgt | ||||
| 0 | ||||
| 5 | ||||
| 42 | ||||
| VComponent | ||||
| 43 | ||||
| WRect | ||||
| 2460 | ||||
| 2400 | ||||
| 2360 | ||||
| 1280 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| @ -205,28 +201,44 @@ WRect | ||||
| 44 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/cmd/scm/qsescm.tgt | ||||
| debug/os2/lib/scm/qsescm.tgt | ||||
| 0 | ||||
| 0 | ||||
| 1 | ||||
| 45 | ||||
| VComponent | ||||
| 46 | ||||
| WRect | ||||
| 2460 | ||||
| 2400 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 47 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/cmd/scm/qsescm.tgt | ||||
| 0 | ||||
| 1 | ||||
| 48 | ||||
| VComponent | ||||
| 49 | ||||
| WRect | ||||
| 980 | ||||
| 1080 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 47 | ||||
| 50 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/lib/cmn/qsecmn.tgt | ||||
| 29 | ||||
| 30 | ||||
| 48 | ||||
| 51 | ||||
| VComponent | ||||
| 49 | ||||
| 52 | ||||
| WRect | ||||
| 200 | ||||
| 1240 | ||||
| @ -234,31 +246,31 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 50 | ||||
| 53 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/lib/scm/qsescm.tgt | ||||
| 0 | ||||
| 0 | ||||
| 51 | ||||
| 54 | ||||
| VComponent | ||||
| 52 | ||||
| 55 | ||||
| WRect | ||||
| 3280 | ||||
| 40 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 53 | ||||
| 0 | ||||
| 56 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/cmd/scm/qsescm.tgt | ||||
| 0 | ||||
| 0 | ||||
| 54 | ||||
| 57 | ||||
| VComponent | ||||
| 55 | ||||
| 58 | ||||
| WRect | ||||
| 240 | ||||
| 80 | ||||
| @ -266,15 +278,15 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 56 | ||||
| 59 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/lib/awk/qseawk.tgt | ||||
| 8 | ||||
| 12 | ||||
| 57 | ||||
| 60 | ||||
| VComponent | ||||
| 58 | ||||
| 61 | ||||
| WRect | ||||
| 830 | ||||
| 2720 | ||||
| @ -282,31 +294,31 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 59 | ||||
| 62 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/lib/awk/qseawk.tgt | ||||
| 8 | ||||
| 9 | ||||
| 60 | ||||
| 63 | ||||
| VComponent | ||||
| 61 | ||||
| 64 | ||||
| WRect | ||||
| 2920 | ||||
| 930 | ||||
| 880 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 62 | ||||
| 65 | ||||
| WFileName | ||||
| 28 | ||||
| debug/os2/cmd/awk/qseawk.tgt | ||||
| 0 | ||||
| 1 | ||||
| 63 | ||||
| 66 | ||||
| VComponent | ||||
| 64 | ||||
| 67 | ||||
| WRect | ||||
| 1070 | ||||
| 760 | ||||
| @ -314,10 +326,58 @@ WRect | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 65 | ||||
| 68 | ||||
| WFileName | ||||
| 30 | ||||
| debug/dos32/lib/cmn/qsecmn.tgt | ||||
| 16 | ||||
| 22 | ||||
| 69 | ||||
| VComponent | ||||
| 70 | ||||
| WRect | ||||
| 1640 | ||||
| 1360 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 7 | ||||
| 33 | ||||
| 71 | ||||
| WFileName | ||||
| 30 | ||||
| debug/dos32/lib/awk/qseawk.tgt | ||||
| 0 | ||||
| 0 | ||||
| 72 | ||||
| VComponent | ||||
| 73 | ||||
| WRect | ||||
| 0 | ||||
| 213 | ||||
| 5700 | ||||
| 4240 | ||||
| 1 | ||||
| 0 | ||||
| 74 | ||||
| WFileName | ||||
| 30 | ||||
| debug/dos32/cmd/awk/qseawk.tgt | ||||
| 0 | ||||
| 1 | ||||
| 75 | ||||
| VComponent | ||||
| 76 | ||||
| WRect | ||||
| 1650 | ||||
| 1266 | ||||
| 5700 | ||||
| 4253 | ||||
| 0 | ||||
| 0 | ||||
| 77 | ||||
| WFileName | ||||
| 30 | ||||
| debug/win32/cmd/awk/qseawk.tgt | ||||
| 0 | ||||
| 1 | ||||
| 75 | ||||
|  | ||||
| @ -124,7 +124,7 @@ o?2??Include directories: | ||||
| 31 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 32 | ||||
| MVState | ||||
| @ -152,7 +152,7 @@ WVList | ||||
| 37 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\cmd\sed\sed.c | ||||
| ../../../../../cmd/sed/sed.c | ||||
| 38 | ||||
| WString | ||||
| 4 | ||||
|  | ||||
| @ -144,7 +144,7 @@ WVList | ||||
| 35 | ||||
| MItem | ||||
| 35 | ||||
| ..\..\..\..\..\lib\cmn\alg_search.c | ||||
| ../../../../../lib/cmn/alg_search.c | ||||
| 36 | ||||
| WString | ||||
| 4 | ||||
| @ -162,7 +162,7 @@ WVList | ||||
| 39 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\alg_sort.c | ||||
| ../../../../../lib/cmn/alg_sort.c | ||||
| 40 | ||||
| WString | ||||
| 4 | ||||
| @ -180,7 +180,7 @@ WVList | ||||
| 43 | ||||
| MItem | ||||
| 31 | ||||
| ..\..\..\..\..\lib\cmn\assert.c | ||||
| ../../../../../lib/cmn/assert.c | ||||
| 44 | ||||
| WString | ||||
| 4 | ||||
| @ -198,7 +198,7 @@ WVList | ||||
| 47 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\chr.c | ||||
| ../../../../../lib/cmn/chr.c | ||||
| 48 | ||||
| WString | ||||
| 4 | ||||
| @ -216,7 +216,7 @@ WVList | ||||
| 51 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\chr_cnv.c | ||||
| ../../../../../lib/cmn/chr_cnv.c | ||||
| 52 | ||||
| WString | ||||
| 4 | ||||
| @ -234,7 +234,7 @@ WVList | ||||
| 55 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\dll.c | ||||
| ../../../../../lib/cmn/dll.c | ||||
| 56 | ||||
| WString | ||||
| 4 | ||||
| @ -252,7 +252,7 @@ WVList | ||||
| 59 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fio.c | ||||
| ../../../../../lib/cmn/fio.c | ||||
| 60 | ||||
| WString | ||||
| 4 | ||||
| @ -270,7 +270,7 @@ WVList | ||||
| 63 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\fma.c | ||||
| ../../../../../lib/cmn/fma.c | ||||
| 64 | ||||
| WString | ||||
| 4 | ||||
| @ -288,7 +288,7 @@ WVList | ||||
| 67 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\gdl.c | ||||
| ../../../../../lib/cmn/gdl.c | ||||
| 68 | ||||
| WString | ||||
| 4 | ||||
| @ -306,7 +306,7 @@ WVList | ||||
| 71 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\htb.c | ||||
| ../../../../../lib/cmn/htb.c | ||||
| 72 | ||||
| WString | ||||
| 4 | ||||
| @ -324,7 +324,7 @@ WVList | ||||
| 75 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\lda.c | ||||
| ../../../../../lib/cmn/lda.c | ||||
| 76 | ||||
| WString | ||||
| 4 | ||||
| @ -342,7 +342,7 @@ WVList | ||||
| 79 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\main.c | ||||
| ../../../../../lib/cmn/main.c | ||||
| 80 | ||||
| WString | ||||
| 4 | ||||
| @ -360,7 +360,7 @@ WVList | ||||
| 83 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.c | ||||
| ../../../../../lib/cmn/mem.c | ||||
| 84 | ||||
| WString | ||||
| 4 | ||||
| @ -378,7 +378,7 @@ WVList | ||||
| 87 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\misc.c | ||||
| ../../../../../lib/cmn/misc.c | ||||
| 88 | ||||
| WString | ||||
| 4 | ||||
| @ -396,7 +396,7 @@ WVList | ||||
| 91 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\oht.c | ||||
| ../../../../../lib/cmn/oht.c | ||||
| 92 | ||||
| WString | ||||
| 4 | ||||
| @ -414,7 +414,7 @@ WVList | ||||
| 95 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\opt.c | ||||
| ../../../../../lib/cmn/opt.c | ||||
| 96 | ||||
| WString | ||||
| 4 | ||||
| @ -432,7 +432,7 @@ WVList | ||||
| 99 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\pio.c | ||||
| ../../../../../lib/cmn/pio.c | ||||
| 100 | ||||
| WString | ||||
| 4 | ||||
| @ -450,7 +450,7 @@ WVList | ||||
| 103 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rbt.c | ||||
| ../../../../../lib/cmn/rbt.c | ||||
| 104 | ||||
| WString | ||||
| 4 | ||||
| @ -468,7 +468,7 @@ WVList | ||||
| 107 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\rex.c | ||||
| ../../../../../lib/cmn/rex.c | ||||
| 108 | ||||
| WString | ||||
| 4 | ||||
| @ -486,7 +486,7 @@ WVList | ||||
| 111 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sio.c | ||||
| ../../../../../lib/cmn/sio.c | ||||
| 112 | ||||
| WString | ||||
| 4 | ||||
| @ -504,7 +504,7 @@ WVList | ||||
| 115 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\sll.c | ||||
| ../../../../../lib/cmn/sll.c | ||||
| 116 | ||||
| WString | ||||
| 4 | ||||
| @ -522,7 +522,7 @@ WVList | ||||
| 119 | ||||
| MItem | ||||
| 30 | ||||
| ..\..\..\..\..\lib\cmn\stdio.c | ||||
| ../../../../../lib/cmn/stdio.c | ||||
| 120 | ||||
| WString | ||||
| 4 | ||||
| @ -540,7 +540,7 @@ WVList | ||||
| 123 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_beg.c | ||||
| ../../../../../lib/cmn/str_beg.c | ||||
| 124 | ||||
| WString | ||||
| 4 | ||||
| @ -558,7 +558,7 @@ WVList | ||||
| 127 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cat.c | ||||
| ../../../../../lib/cmn/str_cat.c | ||||
| 128 | ||||
| WString | ||||
| 4 | ||||
| @ -576,7 +576,7 @@ WVList | ||||
| 131 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_chr.c | ||||
| ../../../../../lib/cmn/str_chr.c | ||||
| 132 | ||||
| WString | ||||
| 4 | ||||
| @ -594,7 +594,7 @@ WVList | ||||
| 135 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cmp.c | ||||
| ../../../../../lib/cmn/str_cmp.c | ||||
| 136 | ||||
| WString | ||||
| 4 | ||||
| @ -612,7 +612,7 @@ WVList | ||||
| 139 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cnv.c | ||||
| ../../../../../lib/cmn/str_cnv.c | ||||
| 140 | ||||
| WString | ||||
| 4 | ||||
| @ -630,7 +630,7 @@ WVList | ||||
| 143 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_cpy.c | ||||
| ../../../../../lib/cmn/str_cpy.c | ||||
| 144 | ||||
| WString | ||||
| 4 | ||||
| @ -648,7 +648,7 @@ WVList | ||||
| 147 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_del.c | ||||
| ../../../../../lib/cmn/str_del.c | ||||
| 148 | ||||
| WString | ||||
| 4 | ||||
| @ -666,7 +666,7 @@ WVList | ||||
| 151 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_dup.c | ||||
| ../../../../../lib/cmn/str_dup.c | ||||
| 152 | ||||
| WString | ||||
| 4 | ||||
| @ -684,7 +684,7 @@ WVList | ||||
| 155 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynm.c | ||||
| ../../../../../lib/cmn/str_dynm.c | ||||
| 156 | ||||
| WString | ||||
| 4 | ||||
| @ -702,7 +702,7 @@ WVList | ||||
| 159 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_dynw.c | ||||
| ../../../../../lib/cmn/str_dynw.c | ||||
| 160 | ||||
| WString | ||||
| 4 | ||||
| @ -720,7 +720,7 @@ WVList | ||||
| 163 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_end.c | ||||
| ../../../../../lib/cmn/str_end.c | ||||
| 164 | ||||
| WString | ||||
| 4 | ||||
| @ -738,7 +738,7 @@ WVList | ||||
| 167 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_excl.c | ||||
| ../../../../../lib/cmn/str_excl.c | ||||
| 168 | ||||
| WString | ||||
| 4 | ||||
| @ -756,7 +756,7 @@ WVList | ||||
| 171 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_fcpy.c | ||||
| ../../../../../lib/cmn/str_fcpy.c | ||||
| 172 | ||||
| WString | ||||
| 4 | ||||
| @ -774,7 +774,7 @@ WVList | ||||
| 175 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_incl.c | ||||
| ../../../../../lib/cmn/str_incl.c | ||||
| 176 | ||||
| WString | ||||
| 4 | ||||
| @ -792,7 +792,7 @@ WVList | ||||
| 179 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_len.c | ||||
| ../../../../../lib/cmn/str_len.c | ||||
| 180 | ||||
| WString | ||||
| 4 | ||||
| @ -810,7 +810,7 @@ WVList | ||||
| 183 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_pac.c | ||||
| ../../../../../lib/cmn/str_pac.c | ||||
| 184 | ||||
| WString | ||||
| 4 | ||||
| @ -828,7 +828,7 @@ WVList | ||||
| 187 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_pbrk.c | ||||
| ../../../../../lib/cmn/str_pbrk.c | ||||
| 188 | ||||
| WString | ||||
| 4 | ||||
| @ -846,7 +846,7 @@ WVList | ||||
| 191 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_put.c | ||||
| ../../../../../lib/cmn/str_put.c | ||||
| 192 | ||||
| WString | ||||
| 4 | ||||
| @ -864,7 +864,7 @@ WVList | ||||
| 195 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rev.c | ||||
| ../../../../../lib/cmn/str_rev.c | ||||
| 196 | ||||
| WString | ||||
| 4 | ||||
| @ -882,7 +882,7 @@ WVList | ||||
| 199 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_rot.c | ||||
| ../../../../../lib/cmn/str_rot.c | ||||
| 200 | ||||
| WString | ||||
| 4 | ||||
| @ -900,7 +900,7 @@ WVList | ||||
| 203 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_set.c | ||||
| ../../../../../lib/cmn/str_set.c | ||||
| 204 | ||||
| WString | ||||
| 4 | ||||
| @ -918,7 +918,7 @@ WVList | ||||
| 207 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spl.c | ||||
| ../../../../../lib/cmn/str_spl.c | ||||
| 208 | ||||
| WString | ||||
| 4 | ||||
| @ -936,7 +936,7 @@ WVList | ||||
| 211 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_spn.c | ||||
| ../../../../../lib/cmn/str_spn.c | ||||
| 212 | ||||
| WString | ||||
| 4 | ||||
| @ -954,7 +954,7 @@ WVList | ||||
| 215 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_str.c | ||||
| ../../../../../lib/cmn/str_str.c | ||||
| 216 | ||||
| WString | ||||
| 4 | ||||
| @ -972,7 +972,7 @@ WVList | ||||
| 219 | ||||
| MItem | ||||
| 34 | ||||
| ..\..\..\..\..\lib\cmn\str_subst.c | ||||
| ../../../../../lib/cmn/str_subst.c | ||||
| 220 | ||||
| WString | ||||
| 4 | ||||
| @ -990,7 +990,7 @@ WVList | ||||
| 223 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_tok.c | ||||
| ../../../../../lib/cmn/str_tok.c | ||||
| 224 | ||||
| WString | ||||
| 4 | ||||
| @ -1008,7 +1008,7 @@ WVList | ||||
| 227 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\str_trm.c | ||||
| ../../../../../lib/cmn/str_trm.c | ||||
| 228 | ||||
| WString | ||||
| 4 | ||||
| @ -1026,7 +1026,7 @@ WVList | ||||
| 231 | ||||
| MItem | ||||
| 33 | ||||
| ..\..\..\..\..\lib\cmn\str_word.c | ||||
| ../../../../../lib/cmn/str_word.c | ||||
| 232 | ||||
| WString | ||||
| 4 | ||||
| @ -1044,7 +1044,7 @@ WVList | ||||
| 235 | ||||
| MItem | ||||
| 29 | ||||
| ..\..\..\..\..\lib\cmn\time.c | ||||
| ../../../../../lib/cmn/time.c | ||||
| 236 | ||||
| WString | ||||
| 4 | ||||
| @ -1062,7 +1062,7 @@ WVList | ||||
| 239 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\tio.c | ||||
| ../../../../../lib/cmn/tio.c | ||||
| 240 | ||||
| WString | ||||
| 4 | ||||
| @ -1080,7 +1080,7 @@ WVList | ||||
| 243 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_get.c | ||||
| ../../../../../lib/cmn/tio_get.c | ||||
| 244 | ||||
| WString | ||||
| 4 | ||||
| @ -1098,7 +1098,7 @@ WVList | ||||
| 247 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\tio_put.c | ||||
| ../../../../../lib/cmn/tio_put.c | ||||
| 248 | ||||
| WString | ||||
| 4 | ||||
| @ -1116,7 +1116,7 @@ WVList | ||||
| 251 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\xma.c | ||||
| ../../../../../lib/cmn/xma.c | ||||
| 252 | ||||
| WString | ||||
| 4 | ||||
| @ -1152,7 +1152,7 @@ WVList | ||||
| 259 | ||||
| MItem | ||||
| 28 | ||||
| ..\..\..\..\..\lib\cmn\mem.h | ||||
| ../../../../../lib/cmn/mem.h | ||||
| 260 | ||||
| WString | ||||
| 3 | ||||
| @ -1170,7 +1170,7 @@ WVList | ||||
| 263 | ||||
| MItem | ||||
| 32 | ||||
| ..\..\..\..\..\lib\cmn\syscall.h | ||||
| ../../../../../lib/cmn/syscall.h | ||||
| 264 | ||||
| WString | ||||
| 3 | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| MVState | ||||
|  | ||||
| @ -68,7 +68,7 @@ o?2??Include directories: | ||||
| 17 | ||||
| WString | ||||
| 54 | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" | ||||
| "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" | ||||
| 0 | ||||
| 18 | ||||
| MVState | ||||
|  | ||||
		Reference in New Issue
	
	Block a user