diff --git a/qse/include/qse/cmn/str.h b/qse/include/qse/cmn/str.h index 653bd2c1..9ec5dcf2 100644 --- a/qse/include/qse/cmn/str.h +++ b/qse/include/qse/cmn/str.h @@ -2309,6 +2309,18 @@ int qse_mbsntowcsn ( qse_size_t* wcslen ); +/** + * The qse_mbsntowcsnupto() function is the same as qse_mbsntowcsn() + * except that it stops once it has processed the @a stopper character. + */ +int qse_mbsntowcsnupto ( + const qse_mchar_t* mbs, + qse_size_t* mbslen, + qse_wchar_t* wcs, + qse_size_t* wcslen, + qse_wchar_t stopper +); + qse_wchar_t* qse_mbstowcsdup ( const qse_mchar_t* mbs, qse_mmgr_t* mmgr diff --git a/qse/include/qse/cmn/tio.h b/qse/include/qse/cmn/tio.h index 00d627b7..89d2ba36 100644 --- a/qse/include/qse/cmn/tio.h +++ b/qse/include/qse/cmn/tio.h @@ -57,8 +57,7 @@ enum * (i.e. 6 for utf8) */ QSE_TIO_MAX_INBUF_LEN = 4096, - QSE_TIO_MAX_OUTBUF_LEN = 4096, - QSE_TIO_MAX_INWBUF_LEN = 1024 + QSE_TIO_MAX_OUTBUF_LEN = 4096 }; enum qse_tio_cmd_t @@ -111,12 +110,9 @@ struct qse_tio_t qse_size_t inbuf_cur; qse_size_t inbuf_len; qse_size_t outbuf_len; - qse_size_t inwbuf_cur; - qse_size_t inwbuf_len; qse_mchar_t inbuf[QSE_TIO_MAX_INBUF_LEN]; qse_mchar_t outbuf[QSE_TIO_MAX_OUTBUF_LEN]; - qse_wchar_t inwbuf[QSE_TIO_MAX_INWBUF_LEN]; }; #ifdef __cplusplus diff --git a/qse/lib/cmn/fio.c b/qse/lib/cmn/fio.c index 31cbd4b0..8b8a9a91 100644 --- a/qse/lib/cmn/fio.c +++ b/qse/lib/cmn/fio.c @@ -40,10 +40,6 @@ # include "syscall.h" # include # include -# include -# ifndef PATH_MAX -# define PATH_MAX 2048 -# endif #endif QSE_IMPLEMENT_COMMON_FUNCTIONS (fio) @@ -250,13 +246,23 @@ int qse_fio_init ( ULONG open_action, open_mode, open_attr; LONGLONG zero; - #ifdef QSE_CHAR_IS_MCHAR + #if defined(QSE_CHAR_IS_MCHAR) const qse_mchar_t* path_mb = path; #else - qse_mchar_t path_mb[CCHMAXPATH]; - qse_size_t wl, ml = QSE_COUNTOF(path_mb); -/* TODO: use wcstombsdup??? */ - if (qse_wcstombs (path, &wl, path_mb, &ml) <= -1) return -1; + qse_mchar_t path_mb_buf[CCHMAXPATH]; + qse_mchar_t* path_mb; + qse_size_t wl, ml; + int px; + + path_mb = path_mb_buf; + ml = QSE_COUNTOF(path_mb_buf); + px = qse_wcstombs (path, &wl, path_mb, &ml); + if (px == -2) + { + path_mb = qse_wcstombsdup (path, mmgr); + if (path_mb == QSE_NULL) return -1; + } + else if (px <= -1) return -1; #endif zero.ulLo = 0; @@ -323,6 +329,12 @@ int qse_fio_init ( 0L ); + #if defined(QSE_CHAR_IS_MCHAR) + /* nothing to do */ + #else + if (path_mb != path_mb_buf) QSE_MMGR_FREE (mmgr, path_mb); + #endif + if (ret != NO_ERROR) { if (flags & QSE_FIO_TEMPORARY) goto retry_temporary; @@ -341,12 +353,23 @@ int qse_fio_init ( int oflags = 0; int permission = 0; - #ifdef QSE_CHAR_IS_MCHAR + #if defined(QSE_CHAR_IS_MCHAR) const qse_mchar_t* path_mb = path; #else - qse_mchar_t path_mb[_MAX_PATH]; - qse_size_t wl, ml = QSE_COUNTOF(path_mb); - if (qse_wcstombs (path, &wl, path_mb, &ml) <= -1) return -1; + qse_mchar_t path_mb_buf[_MAX_PATH]; + qse_mchar_t* path_mb; + qse_size_t wl, ml; + int px; + + path_mb = path_mb_buf; + ml = QSE_COUNTOF(path_mb_buf); + px = qse_wcstombs (path, &wl, path_mb, &ml); + if (px == -2) + { + path_mb = qse_wcstombsdup (path, mmgr); + if (path_mb == QSE_NULL) return -1; + } + else if (px <= -1) return -1; #endif if (flags & QSE_FIO_APPEND) @@ -377,6 +400,13 @@ int qse_fio_init ( oflags, permission ); + + #if defined(QSE_CHAR_IS_MCHAR) + /* nothing to do */ + #else + if (path_mb != path_mb_buf) QSE_MMGR_FREE (mmgr, path_mb); + #endif + if (handle <= -1) { if (flags & QSE_FIO_TEMPORARY) goto retry_temporary; @@ -394,13 +424,23 @@ int qse_fio_init ( { int desired_access = 0; - #ifdef QSE_CHAR_IS_MCHAR + #if defined(QSE_CHAR_IS_MCHAR) const qse_mchar_t* path_mb = path; #else - qse_mchar_t path_mb[PATH_MAX + 1]; -/* TODO: use qse_wcstombsdup(). path name may exceede PATH_MAX if it contains .. or . */ - qse_size_t wl, ml = QSE_COUNTOF(path_mb); - if (qse_wcstombs (path, &wl, path_mb, &ml) <= -1) return -1; + qse_mchar_t path_mb_buf[1024]; /* PATH_MAX instead? */ + qse_mchar_t* path_mb; + qse_size_t wl, ml; + int px; + + path_mb = path_mb_buf; + ml = QSE_COUNTOF(path_mb_buf); + px = qse_wcstombs (path, &wl, path_mb, &ml); + if (px == -2) + { + path_mb = qse_wcstombsdup (path, mmgr); + if (path_mb == QSE_NULL) return -1; + } + else if (px <= -1) return -1; #endif /* * rwa -> RDWR | APPEND @@ -439,6 +479,12 @@ int qse_fio_init ( #endif handle = QSE_OPEN (path_mb, desired_access, mode); + + #if defined(QSE_CHAR_IS_MCHAR) + /* nothing to do */ + #else + if (path_mb != path_mb_buf) QSE_MMGR_FREE (mmgr, path_mb); + #endif } if (handle == -1) diff --git a/qse/lib/cmn/str-cnv.c b/qse/lib/cmn/str-cnv.c index 1b764d61..b8142900 100644 --- a/qse/lib/cmn/str-cnv.c +++ b/qse/lib/cmn/str-cnv.c @@ -251,6 +251,65 @@ int qse_mbsntowcsn ( return ret; } +int qse_mbsntowcsnupto ( + const qse_mchar_t* mbs, qse_size_t* mbslen, + qse_wchar_t* wcs, qse_size_t* wcslen, qse_wchar_t stopper) +{ + const qse_mchar_t* p; + qse_mbstate_t state = {{ 0, }}; + int ret = 0; + qse_size_t mlen; + + qse_wchar_t w; + qse_size_t wlen = 0; + qse_wchar_t* wend; + + p = mbs; + mlen = *mbslen; + + if (wcs) wend = wcs + *wcslen; + + /* since it needs to break when a stopper is met, + * i can't perform bulky conversion using the buffer + * provided. so conversion is conducted character by + * character */ + while (mlen > 0) + { + qse_size_t n; + + n = qse_mbrtowc (p, mlen, &w, &state); + if (n == 0) + { + /* invalid sequence */ + ret = -1; + break; + } + if (n > mlen) + { + /* incomplete sequence */ + ret = -3; + break; + } + + if (wcs) + { + if (wcs >= wend) break; + *wcs++ = w; + } + + p += n; + mlen -= n; + wlen += 1; + + if (w == stopper) break; + } + + *wcslen = wlen; + *mbslen = p - mbs; + + return ret; +} + qse_wchar_t* qse_mbstowcsdup (const qse_mchar_t* mbs, qse_mmgr_t* mmgr) { qse_size_t mbslen, wcslen; diff --git a/qse/lib/cmn/tio-get.c b/qse/lib/cmn/tio-get.c index cd94d2ac..1599f00f 100644 --- a/qse/lib/cmn/tio-get.c +++ b/qse/lib/cmn/tio-get.c @@ -44,7 +44,6 @@ qse_ssize_t qse_tio_readmbs (qse_tio_t* tio, qse_mchar_t* buf, qse_size_t size) if (size > QSE_TYPE_MAX(qse_ssize_t)) size = QSE_TYPE_MAX(qse_ssize_t); -/* TODO: HOW TO HANDLE those already converted to wchar???? */ nread = 0; while (nread < size) { @@ -77,7 +76,8 @@ done: return nread; } -static QSE_INLINE int tio_read_widechars (qse_tio_t* tio) +static QSE_INLINE qse_ssize_t tio_read_widechars ( + qse_tio_t* tio, qse_wchar_t* buf, qse_size_t bufsize) { qse_size_t mlen, wlen; qse_ssize_t n; @@ -128,9 +128,9 @@ static QSE_INLINE int tio_read_widechars (qse_tio_t* tio) } mlen = tio->inbuf_len - tio->inbuf_cur; - wlen = QSE_COUNTOF(tio->inwbuf); + wlen = bufsize; - x = qse_mbsntowcsn (&tio->inbuf[tio->inbuf_cur], &mlen, tio->inwbuf, &wlen); + x = qse_mbsntowcsnupto (&tio->inbuf[tio->inbuf_cur], &mlen, buf, &wlen, QSE_WT('\n')); tio->inbuf_cur += mlen; if (x == -3) @@ -154,12 +154,12 @@ static QSE_INLINE int tio_read_widechars (qse_tio_t* tio) else if (x == -2) { /* buffer not large enough */ - QSE_ASSERTX (wlen > 0, - "You must enlarge the size of tio->inwbuf if this happens."); + QSE_ASSERT (wlen > 0); /* the wide-character buffer is not just large enough to * hold the entire conversion result. lets's go on so long as - * 1 wide-character is produced though it may be inefficient */ + * 1 wide-character is produced though it may be inefficient. + */ } else if (x <= -1) { @@ -168,7 +168,7 @@ static QSE_INLINE int tio_read_widechars (qse_tio_t* tio) { ignore_illseq: tio->inbuf_cur++; /* skip one byte */ - tio->inwbuf[wlen++] = QSE_WT('?'); + buf[wlen++] = QSE_WT('?'); } else if (wlen <= 0) { @@ -184,14 +184,13 @@ static QSE_INLINE int tio_read_widechars (qse_tio_t* tio) } } - tio->inwbuf_cur = 0; - tio->inwbuf_len = wlen; - return 1; + return wlen; } qse_ssize_t qse_tio_readwcs (qse_tio_t* tio, qse_wchar_t* buf, qse_size_t size) { qse_size_t nread = 0; + qse_ssize_t n; /*QSE_ASSERT (tio->input_func != QSE_NULL);*/ if (tio->input_func == QSE_NULL) @@ -204,25 +203,19 @@ qse_ssize_t qse_tio_readwcs (qse_tio_t* tio, qse_wchar_t* buf, qse_size_t size) while (nread < size) { - if (tio->inwbuf_cur >= tio->inwbuf_len) + if (tio->input_status & STATUS_ILLSEQ) { - int n; - - /* no more characters in the wide-charcter buffer */ - if (tio->input_status & STATUS_ILLSEQ) - { - tio->input_status &= ~STATUS_ILLSEQ; - tio->errnum = QSE_TIO_EILSEQ; - return -1; - } - - n = tio_read_widechars (tio); - if (n == 0) break; - if (n <= -1) return -1; + tio->input_status &= ~STATUS_ILLSEQ; + tio->errnum = QSE_TIO_EILSEQ; + return -1; } + + n = tio_read_widechars (tio, &buf[nread], size - nread); + if (n == 0) break; + if (n <= -1) return -1; - buf[nread] = tio->inwbuf[tio->inwbuf_cur++]; - if (buf[nread++] == QSE_WT('\n')) break; + nread += n; + if (buf[nread-1] == QSE_WT('\n')) break; } return nread; diff --git a/qse/samples/cmn/sio01.c b/qse/samples/cmn/sio01.c index 6182b3d0..d2792aeb 100644 --- a/qse/samples/cmn/sio01.c +++ b/qse/samples/cmn/sio01.c @@ -1,12 +1,19 @@ #include #include +#include #include +#if defined(_WIN32) +# include +#endif + + #define R(f) \ do { \ qse_printf (QSE_T("== ")); \ qse_printf (QSE_T(#f)); \ qse_printf (QSE_T(" ==\n")); \ + qse_fflush (QSE_STDOUT); \ if (f() == -1) return -1; \ } while (0) @@ -17,7 +24,7 @@ static int test1 (void) const qse_wchar_t unistr[] = { - /*L"\uB108 \uBB50\uAC00 \uC798\uB0AC\uC5B4?",*/ + /*L"\uB108 \uBB50\uAC00 \uC798\uB0AC\uC5B4!",*/ 0xB108, L' ', 0xBB50, @@ -26,7 +33,7 @@ static int test1 (void) 0xC798, 0xB0AC, 0xC5B4, - L'?', + L'!', L'\0' }; @@ -76,7 +83,7 @@ static int test2 (void) in = qse_sio_openstd (QSE_NULL, 0, QSE_SIO_STDIN, QSE_SIO_READ | QSE_SIO_IGNOREMBWCERR); out = qse_sio_openstd (QSE_NULL, 0, QSE_SIO_STDOUT, QSE_SIO_WRITE | QSE_SIO_IGNOREMBWCERR); - qse_sio_putstr (out, QSE_T("Type something...\n")); + qse_sio_putstr (out, QSE_T("Type something here:\n")); while (1) { n = qse_sio_getwcs (in, buf, QSE_COUNTOF(buf)); @@ -85,7 +92,7 @@ static int test2 (void) { qse_char_t buf[32]; qse_fmtintmax (buf, QSE_COUNTOF(buf), qse_sio_geterrnum(in), 10, -1, QSE_T('\0'), QSE_NULL); - qse_sio_putstr (out, QSE_T("error .... ")); + qse_sio_putstr (out, QSE_T("ERROR .... ")); qse_sio_putstr (out, buf); qse_sio_putstr (out, QSE_T("\n")); break; @@ -108,7 +115,7 @@ static int test3 (void) in = qse_sio_openstd (QSE_NULL, 0, QSE_SIO_STDIN, QSE_SIO_READ | QSE_SIO_IGNOREMBWCERR); out = qse_sio_openstd (QSE_NULL, 0, QSE_SIO_STDOUT, QSE_SIO_WRITE | QSE_SIO_IGNOREMBWCERR); - qse_sio_putstr (out, QSE_T("Type something...\n")); + qse_sio_putstr (out, QSE_T("Type something here:\n")); while (1) { n = qse_sio_getmbs (in, buf, QSE_COUNTOF(buf)); @@ -134,6 +141,11 @@ static int test3 (void) int main () { +#if defined(_WIN32) + UINT old_cp = GetConsoleOutputCP(); + SetConsoleOutputCP (CP_UTF8); +#endif + setlocale (LC_ALL, ""); qse_printf (QSE_T("--------------------------------------------------------------------------------\n")); @@ -144,5 +156,8 @@ int main () R (test2); R (test3); +#if defined(_WIN32) + SetConsoleOutputCP (old_cp); +#endif return 0; } diff --git a/qse/samples/cmn/sio02.c b/qse/samples/cmn/sio02.c index 9102f20c..b4e36a91 100644 --- a/qse/samples/cmn/sio02.c +++ b/qse/samples/cmn/sio02.c @@ -18,7 +18,7 @@ static int test1 (void) const qse_wchar_t unistr[] = { /* ugly hack for old compilers that don't support \u */ - /*L"\uB108 \uBB50\uAC00 \uC798\uB0AC\uC5B4?",*/ + /*L"\uB108 \uBB50\uAC00 \uC798\uB0AC\uC5B4!",*/ 0xB108, L' ', 0xBB50, @@ -27,7 +27,7 @@ static int test1 (void) 0xC798, 0xB0AC, 0xC5B4, - L'?', + L'!', L'\0' }; diff --git a/qse/watcom/debug/dos32/cmd/awk/qseawk.tgt b/qse/watcom/debug/dos32/cmd/awk/qseawk.tgt index b89a47e9..9522b788 100755 --- a/qse/watcom/debug/dos32/cmd/awk/qseawk.tgt +++ b/qse/watcom/debug/dos32/cmd/awk/qseawk.tgt @@ -85,7 +85,7 @@ WString COBJ 21 WVList -1 +2 22 MVState 23 @@ -103,24 +103,40 @@ WString "$(%watcom)/h;../../../../../include" 0 26 +MVState +27 +WString +3 +WCC +28 +WString +23 +?????Macro definitions: +1 +29 +WString +15 +QSE_BUILD_DEBUG +0 +30 WVList 0 -1 1 1 0 -27 +31 MItem 28 ../../../../../cmd/awk/awk.c -28 +32 WString 4 COBJ -29 +33 WVList 0 -30 +34 WVList 0 19 diff --git a/qse/watcom/debug/dos32/cmd/sed/qsesed.tgt b/qse/watcom/debug/dos32/cmd/sed/qsesed.tgt index 3b9ced22..6b3249b7 100755 --- a/qse/watcom/debug/dos32/cmd/sed/qsesed.tgt +++ b/qse/watcom/debug/dos32/cmd/sed/qsesed.tgt @@ -85,42 +85,58 @@ WString COBJ 21 WVList -0 +1 22 +MVState +23 +WString +3 +WCC +24 +WString +23 +?????Macro definitions: +1 +25 +WString +15 +QSE_BUILD_DEBUG +0 +26 WVList 0 -1 1 1 0 -23 +27 MItem 28 ../../../../../cmd/sed/sed.c -24 +28 WString 4 COBJ -25 +29 WVList 1 -26 +30 MVState -27 +31 WString 3 WCC -28 +32 WString 25 d????Include directories: 1 -29 +33 WString 37 "$(%watcom)/h;../../../../../include" 0 -30 +34 WVList 0 19 diff --git a/qse/watcom/debug/dos32/lib/awk/qseawk.tgt b/qse/watcom/debug/dos32/lib/awk/qseawk.tgt index 4800571f..6d28d0b6 100755 --- a/qse/watcom/debug/dos32/lib/awk/qseawk.tgt +++ b/qse/watcom/debug/dos32/lib/awk/qseawk.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 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 +../../../../../lib/awk/awk.c 24 WString 4 @@ -116,7 +114,7 @@ WVList 27 MItem 28 -../../../../../lib/awk/fnc.c +../../../../../lib/awk/err.c 28 WString 4 @@ -133,8 +131,8 @@ WVList 0 31 MItem -29 -../../../../../lib/awk/misc.c +28 +../../../../../lib/awk/fnc.c 32 WString 4 @@ -151,8 +149,8 @@ WVList 0 35 MItem -30 -../../../../../lib/awk/parse.c +29 +../../../../../lib/awk/misc.c 36 WString 4 @@ -169,8 +167,8 @@ WVList 0 39 MItem -28 -../../../../../lib/awk/rec.c +30 +../../../../../lib/awk/parse.c 40 WString 4 @@ -188,7 +186,7 @@ WVList 43 MItem 28 -../../../../../lib/awk/rio.c +../../../../../lib/awk/rec.c 44 WString 4 @@ -206,7 +204,7 @@ WVList 47 MItem 28 -../../../../../lib/awk/run.c +../../../../../lib/awk/rio.c 48 WString 4 @@ -224,7 +222,7 @@ WVList 51 MItem 28 -../../../../../lib/awk/std.c +../../../../../lib/awk/run.c 52 WString 4 @@ -241,8 +239,8 @@ WVList 0 55 MItem -29 -../../../../../lib/awk/tree.c +28 +../../../../../lib/awk/std.c 56 WString 4 @@ -259,8 +257,8 @@ WVList 0 59 MItem -28 -../../../../../lib/awk/val.c +29 +../../../../../lib/awk/tree.c 60 WString 4 @@ -277,26 +275,26 @@ WVList 0 63 MItem -3 -*.h +28 +../../../../../lib/awk/val.c 64 WString -3 -NIL +4 +COBJ 65 WVList 0 66 WVList 0 --1 +11 1 1 0 67 MItem -28 -../../../../../lib/awk/awk.h +3 +*.h 68 WString 3 @@ -307,14 +305,14 @@ WVList 70 WVList 0 -63 +-1 1 1 0 71 MItem 28 -../../../../../lib/awk/err.h +../../../../../lib/awk/awk.h 72 WString 3 @@ -325,14 +323,14 @@ WVList 74 WVList 0 -63 +67 1 1 0 75 MItem 28 -../../../../../lib/awk/fnc.h +../../../../../lib/awk/err.h 76 WString 3 @@ -343,14 +341,14 @@ WVList 78 WVList 0 -63 +67 1 1 0 79 MItem -29 -../../../../../lib/awk/misc.h +28 +../../../../../lib/awk/fnc.h 80 WString 3 @@ -361,14 +359,14 @@ WVList 82 WVList 0 -63 +67 1 1 0 83 MItem -30 -../../../../../lib/awk/parse.h +29 +../../../../../lib/awk/misc.h 84 WString 3 @@ -379,14 +377,14 @@ WVList 86 WVList 0 -63 +67 1 1 0 87 MItem -28 -../../../../../lib/awk/rio.h +30 +../../../../../lib/awk/parse.h 88 WString 3 @@ -397,14 +395,14 @@ WVList 90 WVList 0 -63 +67 1 1 0 91 MItem 28 -../../../../../lib/awk/run.h +../../../../../lib/awk/rio.h 92 WString 3 @@ -415,14 +413,14 @@ WVList 94 WVList 0 -63 +67 1 1 0 95 MItem -29 -../../../../../lib/awk/tree.h +28 +../../../../../lib/awk/run.h 96 WString 3 @@ -433,14 +431,14 @@ WVList 98 WVList 0 -63 +67 1 1 0 99 MItem -28 -../../../../../lib/awk/val.h +29 +../../../../../lib/awk/tree.h 100 WString 3 @@ -451,7 +449,25 @@ WVList 102 WVList 0 -63 +67 +1 +1 +0 +103 +MItem +28 +../../../../../lib/awk/val.h +104 +WString +3 +NIL +105 +WVList +0 +106 +WVList +0 +67 1 1 0 diff --git a/qse/watcom/debug/dos32/lib/cmn/qsecmn.tgt b/qse/watcom/debug/dos32/lib/cmn/qsecmn.tgt index 78008d2e..18759997 100755 --- a/qse/watcom/debug/dos32/lib/cmn/qsecmn.tgt +++ b/qse/watcom/debug/dos32/lib/cmn/qsecmn.tgt @@ -42,7 +42,7 @@ WVList 0 10 WPickList -69 +72 11 MItem 3 @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 WVList 0 -1 1 1 0 -19 -MItem -35 -../../../../../lib/cmn/alg-search.c -20 -WString -4 -COBJ -21 -WVList -0 -22 -WVList -0 -11 -1 -1 -0 23 MItem 33 -../../../../../lib/cmn/alg-sort.c +../../../../../lib/cmn/alg-rand.c 24 WString 4 @@ -115,8 +113,8 @@ WVList 0 27 MItem -31 -../../../../../lib/cmn/assert.c +35 +../../../../../lib/cmn/alg-search.c 28 WString 4 @@ -133,8 +131,8 @@ WVList 0 31 MItem -32 -../../../../../lib/cmn/chr-cnv.c +33 +../../../../../lib/cmn/alg-sort.c 32 WString 4 @@ -151,8 +149,8 @@ WVList 0 35 MItem -28 -../../../../../lib/cmn/chr.c +31 +../../../../../lib/cmn/assert.c 36 WString 4 @@ -169,8 +167,8 @@ WVList 0 39 MItem -28 -../../../../../lib/cmn/dll.c +32 +../../../../../lib/cmn/chr-cnv.c 40 WString 4 @@ -188,7 +186,7 @@ WVList 43 MItem 28 -../../../../../lib/cmn/env.c +../../../../../lib/cmn/chr.c 44 WString 4 @@ -206,7 +204,7 @@ WVList 47 MItem 28 -../../../../../lib/cmn/fio.c +../../../../../lib/cmn/dll.c 48 WString 4 @@ -224,7 +222,7 @@ WVList 51 MItem 28 -../../../../../lib/cmn/fma.c +../../../../../lib/cmn/env.c 52 WString 4 @@ -242,7 +240,7 @@ WVList 55 MItem 28 -../../../../../lib/cmn/gdl.c +../../../../../lib/cmn/fio.c 56 WString 4 @@ -260,7 +258,7 @@ WVList 59 MItem 28 -../../../../../lib/cmn/htb.c +../../../../../lib/cmn/fma.c 60 WString 4 @@ -278,7 +276,7 @@ WVList 63 MItem 28 -../../../../../lib/cmn/lda.c +../../../../../lib/cmn/fmt.c 64 WString 4 @@ -295,8 +293,8 @@ WVList 0 67 MItem -29 -../../../../../lib/cmn/main.c +28 +../../../../../lib/cmn/gdl.c 68 WString 4 @@ -314,7 +312,7 @@ WVList 71 MItem 28 -../../../../../lib/cmn/mem.c +../../../../../lib/cmn/htb.c 72 WString 4 @@ -332,7 +330,7 @@ WVList 75 MItem 28 -../../../../../lib/cmn/oht.c +../../../../../lib/cmn/lda.c 76 WString 4 @@ -349,8 +347,8 @@ WVList 0 79 MItem -28 -../../../../../lib/cmn/opt.c +29 +../../../../../lib/cmn/main.c 80 WString 4 @@ -367,8 +365,8 @@ WVList 0 83 MItem -38 -../../../../../lib/cmn/path-basename.c +28 +../../../../../lib/cmn/mem.c 84 WString 4 @@ -385,8 +383,8 @@ WVList 0 87 MItem -35 -../../../../../lib/cmn/path-canon.c +28 +../../../../../lib/cmn/oht.c 88 WString 4 @@ -404,7 +402,7 @@ WVList 91 MItem 28 -../../../../../lib/cmn/pio.c +../../../../../lib/cmn/opt.c 92 WString 4 @@ -421,8 +419,8 @@ WVList 0 95 MItem -28 -../../../../../lib/cmn/pma.c +38 +../../../../../lib/cmn/path-basename.c 96 WString 4 @@ -439,8 +437,8 @@ WVList 0 99 MItem -28 -../../../../../lib/cmn/rbt.c +35 +../../../../../lib/cmn/path-canon.c 100 WString 4 @@ -458,7 +456,7 @@ WVList 103 MItem 28 -../../../../../lib/cmn/rex.c +../../../../../lib/cmn/pio.c 104 WString 4 @@ -476,7 +474,7 @@ WVList 107 MItem 28 -../../../../../lib/cmn/sio.c +../../../../../lib/cmn/pma.c 108 WString 4 @@ -494,7 +492,7 @@ WVList 111 MItem 28 -../../../../../lib/cmn/sll.c +../../../../../lib/cmn/rbt.c 112 WString 4 @@ -511,8 +509,8 @@ WVList 0 115 MItem -30 -../../../../../lib/cmn/stdio.c +28 +../../../../../lib/cmn/rex.c 116 WString 4 @@ -529,8 +527,8 @@ WVList 0 119 MItem -32 -../../../../../lib/cmn/str-beg.c +28 +../../../../../lib/cmn/sio.c 120 WString 4 @@ -547,8 +545,8 @@ WVList 0 123 MItem -32 -../../../../../lib/cmn/str-cat.c +28 +../../../../../lib/cmn/sll.c 124 WString 4 @@ -565,8 +563,8 @@ WVList 0 127 MItem -32 -../../../../../lib/cmn/str-chr.c +30 +../../../../../lib/cmn/stdio.c 128 WString 4 @@ -584,7 +582,7 @@ WVList 131 MItem 32 -../../../../../lib/cmn/str-cmp.c +../../../../../lib/cmn/str-beg.c 132 WString 4 @@ -602,7 +600,7 @@ WVList 135 MItem 32 -../../../../../lib/cmn/str-cnv.c +../../../../../lib/cmn/str-cat.c 136 WString 4 @@ -620,7 +618,7 @@ WVList 139 MItem 32 -../../../../../lib/cmn/str-cpy.c +../../../../../lib/cmn/str-chr.c 140 WString 4 @@ -638,7 +636,7 @@ WVList 143 MItem 32 -../../../../../lib/cmn/str-del.c +../../../../../lib/cmn/str-cmp.c 144 WString 4 @@ -656,7 +654,7 @@ WVList 147 MItem 32 -../../../../../lib/cmn/str-dup.c +../../../../../lib/cmn/str-cnv.c 148 WString 4 @@ -673,8 +671,8 @@ WVList 0 151 MItem -33 -../../../../../lib/cmn/str-dynm.c +32 +../../../../../lib/cmn/str-cpy.c 152 WString 4 @@ -691,8 +689,8 @@ WVList 0 155 MItem -33 -../../../../../lib/cmn/str-dynw.c +32 +../../../../../lib/cmn/str-del.c 156 WString 4 @@ -710,7 +708,7 @@ WVList 159 MItem 32 -../../../../../lib/cmn/str-end.c +../../../../../lib/cmn/str-dup.c 160 WString 4 @@ -728,7 +726,7 @@ WVList 163 MItem 33 -../../../../../lib/cmn/str-excl.c +../../../../../lib/cmn/str-dynm.c 164 WString 4 @@ -746,7 +744,7 @@ WVList 167 MItem 33 -../../../../../lib/cmn/str-fcpy.c +../../../../../lib/cmn/str-dynw.c 168 WString 4 @@ -763,8 +761,8 @@ WVList 0 171 MItem -33 -../../../../../lib/cmn/str-incl.c +32 +../../../../../lib/cmn/str-end.c 172 WString 4 @@ -781,8 +779,8 @@ WVList 0 175 MItem -32 -../../../../../lib/cmn/str-len.c +33 +../../../../../lib/cmn/str-excl.c 176 WString 4 @@ -799,8 +797,8 @@ WVList 0 179 MItem -32 -../../../../../lib/cmn/str-pac.c +33 +../../../../../lib/cmn/str-fcpy.c 180 WString 4 @@ -818,7 +816,7 @@ WVList 183 MItem 33 -../../../../../lib/cmn/str-pbrk.c +../../../../../lib/cmn/str-incl.c 184 WString 4 @@ -836,7 +834,7 @@ WVList 187 MItem 32 -../../../../../lib/cmn/str-put.c +../../../../../lib/cmn/str-len.c 188 WString 4 @@ -854,7 +852,7 @@ WVList 191 MItem 32 -../../../../../lib/cmn/str-rev.c +../../../../../lib/cmn/str-pac.c 192 WString 4 @@ -871,8 +869,8 @@ WVList 0 195 MItem -32 -../../../../../lib/cmn/str-rot.c +33 +../../../../../lib/cmn/str-pbrk.c 196 WString 4 @@ -890,7 +888,7 @@ WVList 199 MItem 32 -../../../../../lib/cmn/str-set.c +../../../../../lib/cmn/str-put.c 200 WString 4 @@ -908,7 +906,7 @@ WVList 203 MItem 32 -../../../../../lib/cmn/str-spl.c +../../../../../lib/cmn/str-rev.c 204 WString 4 @@ -926,7 +924,7 @@ WVList 207 MItem 32 -../../../../../lib/cmn/str-spn.c +../../../../../lib/cmn/str-rot.c 208 WString 4 @@ -944,7 +942,7 @@ WVList 211 MItem 32 -../../../../../lib/cmn/str-str.c +../../../../../lib/cmn/str-set.c 212 WString 4 @@ -961,8 +959,8 @@ WVList 0 215 MItem -34 -../../../../../lib/cmn/str-subst.c +32 +../../../../../lib/cmn/str-spl.c 216 WString 4 @@ -980,7 +978,7 @@ WVList 219 MItem 32 -../../../../../lib/cmn/str-tok.c +../../../../../lib/cmn/str-spn.c 220 WString 4 @@ -998,7 +996,7 @@ WVList 223 MItem 32 -../../../../../lib/cmn/str-trm.c +../../../../../lib/cmn/str-str.c 224 WString 4 @@ -1015,8 +1013,8 @@ WVList 0 227 MItem -33 -../../../../../lib/cmn/str-word.c +34 +../../../../../lib/cmn/str-subst.c 228 WString 4 @@ -1033,8 +1031,8 @@ WVList 0 231 MItem -29 -../../../../../lib/cmn/time.c +32 +../../../../../lib/cmn/str-tok.c 232 WString 4 @@ -1052,7 +1050,7 @@ WVList 235 MItem 32 -../../../../../lib/cmn/tio-get.c +../../../../../lib/cmn/str-trm.c 236 WString 4 @@ -1069,8 +1067,8 @@ WVList 0 239 MItem -32 -../../../../../lib/cmn/tio-put.c +33 +../../../../../lib/cmn/str-word.c 240 WString 4 @@ -1087,8 +1085,8 @@ WVList 0 243 MItem -28 -../../../../../lib/cmn/tio.c +29 +../../../../../lib/cmn/time.c 244 WString 4 @@ -1106,7 +1104,7 @@ WVList 247 MItem 32 -../../../../../lib/cmn/tre-ast.c +../../../../../lib/cmn/tio-get.c 248 WString 4 @@ -1123,8 +1121,8 @@ WVList 0 251 MItem -36 -../../../../../lib/cmn/tre-compile.c +32 +../../../../../lib/cmn/tio-put.c 252 WString 4 @@ -1141,8 +1139,8 @@ WVList 0 255 MItem -44 -../../../../../lib/cmn/tre-match-backtrack.c +28 +../../../../../lib/cmn/tio.c 256 WString 4 @@ -1159,8 +1157,8 @@ WVList 0 259 MItem -43 -../../../../../lib/cmn/tre-match-parallel.c +32 +../../../../../lib/cmn/tre-ast.c 260 WString 4 @@ -1177,8 +1175,8 @@ WVList 0 263 MItem -34 -../../../../../lib/cmn/tre-parse.c +36 +../../../../../lib/cmn/tre-compile.c 264 WString 4 @@ -1195,8 +1193,8 @@ WVList 0 267 MItem -34 -../../../../../lib/cmn/tre-stack.c +44 +../../../../../lib/cmn/tre-match-backtrack.c 268 WString 4 @@ -1213,8 +1211,8 @@ WVList 0 271 MItem -28 -../../../../../lib/cmn/tre.c +43 +../../../../../lib/cmn/tre-match-parallel.c 272 WString 4 @@ -1231,8 +1229,8 @@ WVList 0 275 MItem -28 -../../../../../lib/cmn/xma.c +34 +../../../../../lib/cmn/tre-parse.c 276 WString 4 @@ -1249,55 +1247,127 @@ WVList 0 279 MItem -3 -*.h +34 +../../../../../lib/cmn/tre-stack.c 280 WString -3 -NIL +4 +COBJ 281 WVList 0 282 WVList 0 --1 +11 1 1 0 283 MItem 28 -../../../../../lib/cmn/mem.h +../../../../../lib/cmn/tre.c 284 WString -3 -NIL +4 +COBJ 285 WVList 0 286 WVList 0 -279 +11 1 1 0 287 MItem -32 -../../../../../lib/cmn/syscall.h +29 +../../../../../lib/cmn/utf8.c 288 WString -3 -NIL +4 +COBJ 289 WVList 0 290 WVList 0 -279 +11 +1 +1 +0 +291 +MItem +28 +../../../../../lib/cmn/xma.c +292 +WString +4 +COBJ +293 +WVList +0 +294 +WVList +0 +11 +1 +1 +0 +295 +MItem +3 +*.h +296 +WString +3 +NIL +297 +WVList +0 +298 +WVList +0 +-1 +1 +1 +0 +299 +MItem +28 +../../../../../lib/cmn/mem.h +300 +WString +3 +NIL +301 +WVList +0 +302 +WVList +0 +295 +1 +1 +0 +303 +MItem +32 +../../../../../lib/cmn/syscall.h +304 +WString +3 +NIL +305 +WVList +0 +306 +WVList +0 +295 1 1 0 diff --git a/qse/watcom/debug/dos32/lib/sed/qsesed.tgt b/qse/watcom/debug/dos32/lib/sed/qsesed.tgt index e57adf74..17470567 100755 --- a/qse/watcom/debug/dos32/lib/sed/qsesed.tgt +++ b/qse/watcom/debug/dos32/lib/sed/qsesed.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 WVList 0 -1 1 1 0 -19 -MItem -28 -../../../../../lib/sed/err.c -20 -WString -4 -COBJ -21 -WVList -0 -22 -WVList -0 -11 -1 -1 -0 23 MItem 28 -../../../../../lib/sed/sed.c +../../../../../lib/sed/err.c 24 WString 4 @@ -116,7 +114,7 @@ WVList 27 MItem 28 -../../../../../lib/sed/std.c +../../../../../lib/sed/sed.c 28 WString 4 @@ -133,26 +131,26 @@ WVList 0 31 MItem -3 -*.h +28 +../../../../../lib/sed/std.c 32 WString -3 -NIL +4 +COBJ 33 WVList 0 34 WVList 0 --1 +11 1 1 0 35 MItem -28 -../../../../../lib/sed/sed.h +3 +*.h 36 WString 3 @@ -163,7 +161,25 @@ WVList 38 WVList 0 -31 +-1 +1 +1 +0 +39 +MItem +28 +../../../../../lib/sed/sed.h +40 +WString +3 +NIL +41 +WVList +0 +42 +WVList +0 +35 1 1 0 diff --git a/qse/watcom/debug/os2/cmd/awk/qseawk.tgt b/qse/watcom/debug/os2/cmd/awk/qseawk.tgt index 65425d8e..95b08e67 100755 --- a/qse/watcom/debug/os2/cmd/awk/qseawk.tgt +++ b/qse/watcom/debug/os2/cmd/awk/qseawk.tgt @@ -128,7 +128,7 @@ WString COBJ 34 WVList -2 +3 35 MVState 36 @@ -146,36 +146,52 @@ WString "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" 0 39 -MCState +MVState 40 WString 3 WCC 41 WString +23 +?????Macro definitions: +1 +42 +WString +15 +QSE_BUILD_DEBUG +0 +43 +MCState +44 +WString +3 +WCC +45 +WString 29 ?????Emit Browser information 1 1 -42 +46 WVList 0 -1 1 1 0 -43 +47 MItem 28 ../../../../../cmd/awk/awk.c -44 +48 WString 4 COBJ -45 +49 WVList 0 -46 +50 WVList 0 32 diff --git a/qse/watcom/debug/os2/cmd/sed/qsesed.tgt b/qse/watcom/debug/os2/cmd/sed/qsesed.tgt index c935c6e7..d2d35166 100755 --- a/qse/watcom/debug/os2/cmd/sed/qsesed.tgt +++ b/qse/watcom/debug/os2/cmd/sed/qsesed.tgt @@ -85,7 +85,7 @@ WString COBJ 21 WVList -2 +3 22 MVState 23 @@ -103,48 +103,64 @@ WString "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" 0 26 -MCState +MVState 27 WString 3 WCC 28 WString +23 +?????Macro definitions: +1 +29 +WString +15 +QSE_BUILD_DEBUG +0 +30 +MCState +31 +WString +3 +WCC +32 +WString 29 ?????Emit Browser information 1 1 -29 +33 WVList 0 -1 1 1 0 -30 +34 MItem 28 ../../../../../cmd/sed/sed.c -31 +35 WString 4 COBJ -32 +36 WVList 1 -33 +37 MCState -34 +38 WString 3 WCC -35 +39 WString 29 ?????Emit Browser information 1 1 -36 +40 WVList 0 19 diff --git a/qse/watcom/debug/os2/lib/awk/qseawk.tgt b/qse/watcom/debug/os2/lib/awk/qseawk.tgt index 84f2e3f9..d6be07ee 100755 --- a/qse/watcom/debug/os2/lib/awk/qseawk.tgt +++ b/qse/watcom/debug/os2/lib/awk/qseawk.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -2 +3 14 MVState 15 @@ -71,55 +71,53 @@ WString "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" 0 18 -MCState +MVState 19 WString 3 WCC 20 WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 +MCState +23 +WString +3 +WCC +24 +WString 29 ?????Emit Browser information 1 1 -21 +25 WVList 1 -22 +26 ActionStates -23 +27 WString 5 &Make -24 +28 WVList 0 -1 1 1 0 -25 -MItem -28 -../../../../../lib/awk/awk.c -26 -WString -4 -COBJ -27 -WVList -0 -28 -WVList -0 -11 -1 -1 -0 29 MItem 28 -../../../../../lib/awk/err.c +../../../../../lib/awk/awk.c 30 WString 4 @@ -137,7 +135,7 @@ WVList 33 MItem 28 -../../../../../lib/awk/fnc.c +../../../../../lib/awk/err.c 34 WString 4 @@ -154,8 +152,8 @@ WVList 0 37 MItem -29 -../../../../../lib/awk/misc.c +28 +../../../../../lib/awk/fnc.c 38 WString 4 @@ -172,8 +170,8 @@ WVList 0 41 MItem -30 -../../../../../lib/awk/parse.c +29 +../../../../../lib/awk/misc.c 42 WString 4 @@ -190,8 +188,8 @@ WVList 0 45 MItem -28 -../../../../../lib/awk/rec.c +30 +../../../../../lib/awk/parse.c 46 WString 4 @@ -209,7 +207,7 @@ WVList 49 MItem 28 -../../../../../lib/awk/rio.c +../../../../../lib/awk/rec.c 50 WString 4 @@ -227,7 +225,7 @@ WVList 53 MItem 28 -../../../../../lib/awk/run.c +../../../../../lib/awk/rio.c 54 WString 4 @@ -245,7 +243,7 @@ WVList 57 MItem 28 -../../../../../lib/awk/std.c +../../../../../lib/awk/run.c 58 WString 4 @@ -262,8 +260,8 @@ WVList 0 61 MItem -29 -../../../../../lib/awk/tree.c +28 +../../../../../lib/awk/std.c 62 WString 4 @@ -280,8 +278,8 @@ WVList 0 65 MItem -28 -../../../../../lib/awk/val.c +29 +../../../../../lib/awk/tree.c 66 WString 4 @@ -298,26 +296,26 @@ WVList 0 69 MItem -3 -*.h +28 +../../../../../lib/awk/val.c 70 WString -3 -NIL +4 +COBJ 71 WVList 0 72 WVList 0 --1 +11 1 1 0 73 MItem -28 -../../../../../lib/awk/awk.h +3 +*.h 74 WString 3 @@ -328,14 +326,14 @@ WVList 76 WVList 0 -69 +-1 1 1 0 77 MItem 28 -../../../../../lib/awk/err.h +../../../../../lib/awk/awk.h 78 WString 3 @@ -346,14 +344,14 @@ WVList 80 WVList 0 -69 +73 1 1 0 81 MItem 28 -../../../../../lib/awk/fnc.h +../../../../../lib/awk/err.h 82 WString 3 @@ -364,14 +362,14 @@ WVList 84 WVList 0 -69 +73 1 1 0 85 MItem -29 -../../../../../lib/awk/misc.h +28 +../../../../../lib/awk/fnc.h 86 WString 3 @@ -382,14 +380,14 @@ WVList 88 WVList 0 -69 +73 1 1 0 89 MItem -30 -../../../../../lib/awk/parse.h +29 +../../../../../lib/awk/misc.h 90 WString 3 @@ -400,14 +398,14 @@ WVList 92 WVList 0 -69 +73 1 1 0 93 MItem -28 -../../../../../lib/awk/rio.h +30 +../../../../../lib/awk/parse.h 94 WString 3 @@ -418,14 +416,14 @@ WVList 96 WVList 0 -69 +73 1 1 0 97 MItem 28 -../../../../../lib/awk/run.h +../../../../../lib/awk/rio.h 98 WString 3 @@ -436,14 +434,14 @@ WVList 100 WVList 0 -69 +73 1 1 0 101 MItem -29 -../../../../../lib/awk/tree.h +28 +../../../../../lib/awk/run.h 102 WString 3 @@ -454,14 +452,14 @@ WVList 104 WVList 0 -69 +73 1 1 0 105 MItem -28 -../../../../../lib/awk/val.h +29 +../../../../../lib/awk/tree.h 106 WString 3 @@ -472,7 +470,25 @@ WVList 108 WVList 0 -69 +73 +1 +1 +0 +109 +MItem +28 +../../../../../lib/awk/val.h +110 +WString +3 +NIL +111 +WVList +0 +112 +WVList +0 +73 1 1 0 diff --git a/qse/watcom/debug/os2/lib/cmn/qsecmn.tgt b/qse/watcom/debug/os2/lib/cmn/qsecmn.tgt index 2304e22d..dfaa63bb 100755 --- a/qse/watcom/debug/os2/lib/cmn/qsecmn.tgt +++ b/qse/watcom/debug/os2/lib/cmn/qsecmn.tgt @@ -42,7 +42,7 @@ WVList 0 10 WPickList -71 +72 11 MItem 3 @@ -53,7 +53,7 @@ WString COBJ 13 WVList -2 +3 14 MVState 15 @@ -71,46 +71,44 @@ WString "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" 0 18 -MCState +MVState 19 WString 3 WCC 20 WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 +MCState +23 +WString +3 +WCC +24 +WString 29 ?????Emit Browser information 1 1 -21 +25 WVList 0 -1 1 1 0 -22 +26 MItem 33 ../../../../../lib/cmn/alg-rand.c -23 -WString -4 -COBJ -24 -WVList -0 -25 -WVList -0 -11 -1 -1 -0 -26 -MItem -35 -../../../../../lib/cmn/alg-search.c 27 WString 4 @@ -127,8 +125,8 @@ WVList 0 30 MItem -33 -../../../../../lib/cmn/alg-sort.c +35 +../../../../../lib/cmn/alg-search.c 31 WString 4 @@ -145,8 +143,8 @@ WVList 0 34 MItem -31 -../../../../../lib/cmn/assert.c +33 +../../../../../lib/cmn/alg-sort.c 35 WString 4 @@ -163,8 +161,8 @@ WVList 0 38 MItem -32 -../../../../../lib/cmn/chr-cnv.c +31 +../../../../../lib/cmn/assert.c 39 WString 4 @@ -181,8 +179,8 @@ WVList 0 42 MItem -28 -../../../../../lib/cmn/chr.c +32 +../../../../../lib/cmn/chr-cnv.c 43 WString 4 @@ -200,7 +198,7 @@ WVList 46 MItem 28 -../../../../../lib/cmn/dll.c +../../../../../lib/cmn/chr.c 47 WString 4 @@ -218,7 +216,7 @@ WVList 50 MItem 28 -../../../../../lib/cmn/env.c +../../../../../lib/cmn/dll.c 51 WString 4 @@ -236,7 +234,7 @@ WVList 54 MItem 28 -../../../../../lib/cmn/fio.c +../../../../../lib/cmn/env.c 55 WString 4 @@ -254,7 +252,7 @@ WVList 58 MItem 28 -../../../../../lib/cmn/fma.c +../../../../../lib/cmn/fio.c 59 WString 4 @@ -272,7 +270,7 @@ WVList 62 MItem 28 -../../../../../lib/cmn/fmt.c +../../../../../lib/cmn/fma.c 63 WString 4 @@ -290,7 +288,7 @@ WVList 66 MItem 28 -../../../../../lib/cmn/gdl.c +../../../../../lib/cmn/fmt.c 67 WString 4 @@ -308,7 +306,7 @@ WVList 70 MItem 28 -../../../../../lib/cmn/htb.c +../../../../../lib/cmn/gdl.c 71 WString 4 @@ -326,7 +324,7 @@ WVList 74 MItem 28 -../../../../../lib/cmn/lda.c +../../../../../lib/cmn/htb.c 75 WString 4 @@ -343,8 +341,8 @@ WVList 0 78 MItem -29 -../../../../../lib/cmn/main.c +28 +../../../../../lib/cmn/lda.c 79 WString 4 @@ -361,8 +359,8 @@ WVList 0 82 MItem -28 -../../../../../lib/cmn/mem.c +29 +../../../../../lib/cmn/main.c 83 WString 4 @@ -380,7 +378,7 @@ WVList 86 MItem 28 -../../../../../lib/cmn/oht.c +../../../../../lib/cmn/mem.c 87 WString 4 @@ -398,7 +396,7 @@ WVList 90 MItem 28 -../../../../../lib/cmn/opt.c +../../../../../lib/cmn/oht.c 91 WString 4 @@ -415,8 +413,8 @@ WVList 0 94 MItem -38 -../../../../../lib/cmn/path-basename.c +28 +../../../../../lib/cmn/opt.c 95 WString 4 @@ -433,8 +431,8 @@ WVList 0 98 MItem -35 -../../../../../lib/cmn/path-canon.c +38 +../../../../../lib/cmn/path-basename.c 99 WString 4 @@ -451,8 +449,8 @@ WVList 0 102 MItem -28 -../../../../../lib/cmn/pio.c +35 +../../../../../lib/cmn/path-canon.c 103 WString 4 @@ -470,7 +468,7 @@ WVList 106 MItem 28 -../../../../../lib/cmn/pma.c +../../../../../lib/cmn/pio.c 107 WString 4 @@ -488,7 +486,7 @@ WVList 110 MItem 28 -../../../../../lib/cmn/rbt.c +../../../../../lib/cmn/pma.c 111 WString 4 @@ -506,7 +504,7 @@ WVList 114 MItem 28 -../../../../../lib/cmn/rex.c +../../../../../lib/cmn/rbt.c 115 WString 4 @@ -524,7 +522,7 @@ WVList 118 MItem 28 -../../../../../lib/cmn/sio.c +../../../../../lib/cmn/rex.c 119 WString 4 @@ -542,7 +540,7 @@ WVList 122 MItem 28 -../../../../../lib/cmn/sll.c +../../../../../lib/cmn/sio.c 123 WString 4 @@ -559,8 +557,8 @@ WVList 0 126 MItem -30 -../../../../../lib/cmn/stdio.c +28 +../../../../../lib/cmn/sll.c 127 WString 4 @@ -577,8 +575,8 @@ WVList 0 130 MItem -32 -../../../../../lib/cmn/str-beg.c +30 +../../../../../lib/cmn/stdio.c 131 WString 4 @@ -596,7 +594,7 @@ WVList 134 MItem 32 -../../../../../lib/cmn/str-cat.c +../../../../../lib/cmn/str-beg.c 135 WString 4 @@ -614,7 +612,7 @@ WVList 138 MItem 32 -../../../../../lib/cmn/str-chr.c +../../../../../lib/cmn/str-cat.c 139 WString 4 @@ -632,7 +630,7 @@ WVList 142 MItem 32 -../../../../../lib/cmn/str-cmp.c +../../../../../lib/cmn/str-chr.c 143 WString 4 @@ -650,7 +648,7 @@ WVList 146 MItem 32 -../../../../../lib/cmn/str-cnv.c +../../../../../lib/cmn/str-cmp.c 147 WString 4 @@ -668,7 +666,7 @@ WVList 150 MItem 32 -../../../../../lib/cmn/str-cpy.c +../../../../../lib/cmn/str-cnv.c 151 WString 4 @@ -686,7 +684,7 @@ WVList 154 MItem 32 -../../../../../lib/cmn/str-del.c +../../../../../lib/cmn/str-cpy.c 155 WString 4 @@ -704,7 +702,7 @@ WVList 158 MItem 32 -../../../../../lib/cmn/str-dup.c +../../../../../lib/cmn/str-del.c 159 WString 4 @@ -721,8 +719,8 @@ WVList 0 162 MItem -33 -../../../../../lib/cmn/str-dynm.c +32 +../../../../../lib/cmn/str-dup.c 163 WString 4 @@ -740,7 +738,7 @@ WVList 166 MItem 33 -../../../../../lib/cmn/str-dynw.c +../../../../../lib/cmn/str-dynm.c 167 WString 4 @@ -757,8 +755,8 @@ WVList 0 170 MItem -32 -../../../../../lib/cmn/str-end.c +33 +../../../../../lib/cmn/str-dynw.c 171 WString 4 @@ -775,8 +773,8 @@ WVList 0 174 MItem -33 -../../../../../lib/cmn/str-excl.c +32 +../../../../../lib/cmn/str-end.c 175 WString 4 @@ -794,7 +792,7 @@ WVList 178 MItem 33 -../../../../../lib/cmn/str-fcpy.c +../../../../../lib/cmn/str-excl.c 179 WString 4 @@ -812,7 +810,7 @@ WVList 182 MItem 33 -../../../../../lib/cmn/str-incl.c +../../../../../lib/cmn/str-fcpy.c 183 WString 4 @@ -829,8 +827,8 @@ WVList 0 186 MItem -32 -../../../../../lib/cmn/str-len.c +33 +../../../../../lib/cmn/str-incl.c 187 WString 4 @@ -848,7 +846,7 @@ WVList 190 MItem 32 -../../../../../lib/cmn/str-pac.c +../../../../../lib/cmn/str-len.c 191 WString 4 @@ -865,8 +863,8 @@ WVList 0 194 MItem -33 -../../../../../lib/cmn/str-pbrk.c +32 +../../../../../lib/cmn/str-pac.c 195 WString 4 @@ -883,8 +881,8 @@ WVList 0 198 MItem -32 -../../../../../lib/cmn/str-put.c +33 +../../../../../lib/cmn/str-pbrk.c 199 WString 4 @@ -902,7 +900,7 @@ WVList 202 MItem 32 -../../../../../lib/cmn/str-rev.c +../../../../../lib/cmn/str-put.c 203 WString 4 @@ -920,7 +918,7 @@ WVList 206 MItem 32 -../../../../../lib/cmn/str-rot.c +../../../../../lib/cmn/str-rev.c 207 WString 4 @@ -938,7 +936,7 @@ WVList 210 MItem 32 -../../../../../lib/cmn/str-set.c +../../../../../lib/cmn/str-rot.c 211 WString 4 @@ -956,7 +954,7 @@ WVList 214 MItem 32 -../../../../../lib/cmn/str-spl.c +../../../../../lib/cmn/str-set.c 215 WString 4 @@ -974,7 +972,7 @@ WVList 218 MItem 32 -../../../../../lib/cmn/str-spn.c +../../../../../lib/cmn/str-spl.c 219 WString 4 @@ -992,7 +990,7 @@ WVList 222 MItem 32 -../../../../../lib/cmn/str-str.c +../../../../../lib/cmn/str-spn.c 223 WString 4 @@ -1009,8 +1007,8 @@ WVList 0 226 MItem -34 -../../../../../lib/cmn/str-subst.c +32 +../../../../../lib/cmn/str-str.c 227 WString 4 @@ -1027,8 +1025,8 @@ WVList 0 230 MItem -32 -../../../../../lib/cmn/str-tok.c +34 +../../../../../lib/cmn/str-subst.c 231 WString 4 @@ -1046,7 +1044,7 @@ WVList 234 MItem 32 -../../../../../lib/cmn/str-trm.c +../../../../../lib/cmn/str-tok.c 235 WString 4 @@ -1063,8 +1061,8 @@ WVList 0 238 MItem -33 -../../../../../lib/cmn/str-word.c +32 +../../../../../lib/cmn/str-trm.c 239 WString 4 @@ -1081,8 +1079,8 @@ WVList 0 242 MItem -29 -../../../../../lib/cmn/time.c +33 +../../../../../lib/cmn/str-word.c 243 WString 4 @@ -1099,8 +1097,8 @@ WVList 0 246 MItem -32 -../../../../../lib/cmn/tio-get.c +29 +../../../../../lib/cmn/time.c 247 WString 4 @@ -1118,7 +1116,7 @@ WVList 250 MItem 32 -../../../../../lib/cmn/tio-put.c +../../../../../lib/cmn/tio-get.c 251 WString 4 @@ -1135,8 +1133,8 @@ WVList 0 254 MItem -28 -../../../../../lib/cmn/tio.c +32 +../../../../../lib/cmn/tio-put.c 255 WString 4 @@ -1153,8 +1151,8 @@ WVList 0 258 MItem -32 -../../../../../lib/cmn/tre-ast.c +28 +../../../../../lib/cmn/tio.c 259 WString 4 @@ -1171,8 +1169,8 @@ WVList 0 262 MItem -36 -../../../../../lib/cmn/tre-compile.c +32 +../../../../../lib/cmn/tre-ast.c 263 WString 4 @@ -1189,8 +1187,8 @@ WVList 0 266 MItem -44 -../../../../../lib/cmn/tre-match-backtrack.c +36 +../../../../../lib/cmn/tre-compile.c 267 WString 4 @@ -1207,8 +1205,8 @@ WVList 0 270 MItem -43 -../../../../../lib/cmn/tre-match-parallel.c +44 +../../../../../lib/cmn/tre-match-backtrack.c 271 WString 4 @@ -1225,8 +1223,8 @@ WVList 0 274 MItem -34 -../../../../../lib/cmn/tre-parse.c +43 +../../../../../lib/cmn/tre-match-parallel.c 275 WString 4 @@ -1244,7 +1242,7 @@ WVList 278 MItem 34 -../../../../../lib/cmn/tre-stack.c +../../../../../lib/cmn/tre-parse.c 279 WString 4 @@ -1261,8 +1259,8 @@ WVList 0 282 MItem -28 -../../../../../lib/cmn/tre.c +34 +../../../../../lib/cmn/tre-stack.c 283 WString 4 @@ -1280,7 +1278,7 @@ WVList 286 MItem 28 -../../../../../lib/cmn/xma.c +../../../../../lib/cmn/tre.c 287 WString 4 @@ -1297,44 +1295,44 @@ WVList 0 290 MItem -3 -*.h +29 +../../../../../lib/cmn/utf8.c 291 WString -3 -NIL +4 +COBJ 292 WVList 0 293 WVList 0 --1 +11 1 1 0 294 MItem 28 -../../../../../lib/cmn/mem.h +../../../../../lib/cmn/xma.c 295 WString -3 -NIL +4 +COBJ 296 WVList 0 297 WVList 0 -290 +11 1 1 0 298 MItem -32 -../../../../../lib/cmn/syscall.h +3 +*.h 299 WString 3 @@ -1345,7 +1343,43 @@ WVList 301 WVList 0 -290 +-1 +1 +1 +0 +302 +MItem +28 +../../../../../lib/cmn/mem.h +303 +WString +3 +NIL +304 +WVList +0 +305 +WVList +0 +298 +1 +1 +0 +306 +MItem +32 +../../../../../lib/cmn/syscall.h +307 +WString +3 +NIL +308 +WVList +0 +309 +WVList +0 +298 1 1 0 diff --git a/qse/watcom/debug/os2/lib/sed/qsesed.tgt b/qse/watcom/debug/os2/lib/sed/qsesed.tgt index cd0094fd..3fb402e5 100755 --- a/qse/watcom/debug/os2/lib/sed/qsesed.tgt +++ b/qse/watcom/debug/os2/lib/sed/qsesed.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -2 +3 14 MVState 15 @@ -71,46 +71,44 @@ WString "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include" 0 18 -MCState +MVState 19 WString 3 WCC 20 WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 +MCState +23 +WString +3 +WCC +24 +WString 29 ?????Emit Browser information 1 1 -21 +25 WVList 0 -1 1 1 0 -22 -MItem -28 -../../../../../lib/sed/err.c -23 -WString -4 -COBJ -24 -WVList -0 -25 -WVList -0 -11 -1 -1 -0 26 MItem 28 -../../../../../lib/sed/sed.c +../../../../../lib/sed/err.c 27 WString 4 @@ -128,7 +126,7 @@ WVList 30 MItem 28 -../../../../../lib/sed/std.c +../../../../../lib/sed/sed.c 31 WString 4 @@ -145,26 +143,26 @@ WVList 0 34 MItem -3 -*.h +28 +../../../../../lib/sed/std.c 35 WString -3 -NIL +4 +COBJ 36 WVList 0 37 WVList 0 --1 +11 1 1 0 38 MItem -28 -../../../../../lib/sed/sed.h +3 +*.h 39 WString 3 @@ -175,7 +173,25 @@ WVList 41 WVList 0 -34 +-1 +1 +1 +0 +42 +MItem +28 +../../../../../lib/sed/sed.h +43 +WString +3 +NIL +44 +WVList +0 +45 +WVList +0 +38 1 1 0 diff --git a/qse/watcom/debug/win32/cmd/awk/qseawk.tgt b/qse/watcom/debug/win32/cmd/awk/qseawk.tgt index 19a60365..52d5aeb8 100755 --- a/qse/watcom/debug/win32/cmd/awk/qseawk.tgt +++ b/qse/watcom/debug/win32/cmd/awk/qseawk.tgt @@ -85,7 +85,7 @@ WString COBJ 21 WVList -1 +2 22 MVState 23 @@ -103,24 +103,40 @@ WString "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" 0 26 +MVState +27 +WString +3 +WCC +28 +WString +23 +?????Macro definitions: +1 +29 +WString +15 +QSE_BUILD_DEBUG +0 +30 WVList 0 -1 1 1 0 -27 +31 MItem 28 ../../../../../cmd/awk/awk.c -28 +32 WString 4 COBJ -29 +33 WVList 0 -30 +34 WVList 0 19 diff --git a/qse/watcom/debug/win32/cmd/sed/qsesed.tgt b/qse/watcom/debug/win32/cmd/sed/qsesed.tgt index 44435bd6..72ff951f 100755 --- a/qse/watcom/debug/win32/cmd/sed/qsesed.tgt +++ b/qse/watcom/debug/win32/cmd/sed/qsesed.tgt @@ -85,7 +85,7 @@ WString COBJ 21 WVList -1 +2 22 MVState 23 @@ -103,24 +103,40 @@ WString "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" 0 26 +MVState +27 +WString +3 +WCC +28 +WString +23 +?????Macro definitions: +1 +29 +WString +15 +QSE_BUILD_DEBUG +0 +30 WVList 0 -1 1 1 0 -27 +31 MItem 28 ../../../../../cmd/sed/sed.c -28 +32 WString 4 COBJ -29 +33 WVList 0 -30 +34 WVList 0 19 diff --git a/qse/watcom/debug/win32/lib/awk/qseawk.tgt b/qse/watcom/debug/win32/lib/awk/qseawk.tgt index 478a284f..2876dfa3 100755 --- a/qse/watcom/debug/win32/lib/awk/qseawk.tgt +++ b/qse/watcom/debug/win32/lib/awk/qseawk.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 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 +../../../../../lib/awk/awk.c 24 WString 4 @@ -116,7 +114,7 @@ WVList 27 MItem 28 -../../../../../lib/awk/fnc.c +../../../../../lib/awk/err.c 28 WString 4 @@ -133,8 +131,8 @@ WVList 0 31 MItem -29 -../../../../../lib/awk/misc.c +28 +../../../../../lib/awk/fnc.c 32 WString 4 @@ -151,8 +149,8 @@ WVList 0 35 MItem -30 -../../../../../lib/awk/parse.c +29 +../../../../../lib/awk/misc.c 36 WString 4 @@ -169,8 +167,8 @@ WVList 0 39 MItem -28 -../../../../../lib/awk/rec.c +30 +../../../../../lib/awk/parse.c 40 WString 4 @@ -188,7 +186,7 @@ WVList 43 MItem 28 -../../../../../lib/awk/rio.c +../../../../../lib/awk/rec.c 44 WString 4 @@ -206,7 +204,7 @@ WVList 47 MItem 28 -../../../../../lib/awk/run.c +../../../../../lib/awk/rio.c 48 WString 4 @@ -224,7 +222,7 @@ WVList 51 MItem 28 -../../../../../lib/awk/std.c +../../../../../lib/awk/run.c 52 WString 4 @@ -241,8 +239,8 @@ WVList 0 55 MItem -29 -../../../../../lib/awk/tree.c +28 +../../../../../lib/awk/std.c 56 WString 4 @@ -259,8 +257,8 @@ WVList 0 59 MItem -28 -../../../../../lib/awk/val.c +29 +../../../../../lib/awk/tree.c 60 WString 4 @@ -277,26 +275,26 @@ WVList 0 63 MItem -3 -*.h +28 +../../../../../lib/awk/val.c 64 WString -3 -NIL +4 +COBJ 65 WVList 0 66 WVList 0 --1 +11 1 1 0 67 MItem -28 -../../../../../lib/awk/awk.h +3 +*.h 68 WString 3 @@ -307,14 +305,14 @@ WVList 70 WVList 0 -63 +-1 1 1 0 71 MItem 28 -../../../../../lib/awk/err.h +../../../../../lib/awk/awk.h 72 WString 3 @@ -325,14 +323,14 @@ WVList 74 WVList 0 -63 +67 1 1 0 75 MItem 28 -../../../../../lib/awk/fnc.h +../../../../../lib/awk/err.h 76 WString 3 @@ -343,14 +341,14 @@ WVList 78 WVList 0 -63 +67 1 1 0 79 MItem -29 -../../../../../lib/awk/misc.h +28 +../../../../../lib/awk/fnc.h 80 WString 3 @@ -361,14 +359,14 @@ WVList 82 WVList 0 -63 +67 1 1 0 83 MItem -30 -../../../../../lib/awk/parse.h +29 +../../../../../lib/awk/misc.h 84 WString 3 @@ -379,14 +377,14 @@ WVList 86 WVList 0 -63 +67 1 1 0 87 MItem -28 -../../../../../lib/awk/rio.h +30 +../../../../../lib/awk/parse.h 88 WString 3 @@ -397,14 +395,14 @@ WVList 90 WVList 0 -63 +67 1 1 0 91 MItem 28 -../../../../../lib/awk/run.h +../../../../../lib/awk/rio.h 92 WString 3 @@ -415,14 +413,14 @@ WVList 94 WVList 0 -63 +67 1 1 0 95 MItem -29 -../../../../../lib/awk/tree.h +28 +../../../../../lib/awk/run.h 96 WString 3 @@ -433,14 +431,14 @@ WVList 98 WVList 0 -63 +67 1 1 0 99 MItem -28 -../../../../../lib/awk/val.h +29 +../../../../../lib/awk/tree.h 100 WString 3 @@ -451,7 +449,25 @@ WVList 102 WVList 0 -63 +67 +1 +1 +0 +103 +MItem +28 +../../../../../lib/awk/val.h +104 +WString +3 +NIL +105 +WVList +0 +106 +WVList +0 +67 1 1 0 diff --git a/qse/watcom/debug/win32/lib/cmn/qsecmn.tgt b/qse/watcom/debug/win32/lib/cmn/qsecmn.tgt index cef0f739..4fc40ecf 100755 --- a/qse/watcom/debug/win32/lib/cmn/qsecmn.tgt +++ b/qse/watcom/debug/win32/lib/cmn/qsecmn.tgt @@ -42,7 +42,7 @@ WVList 0 10 WPickList -69 +72 11 MItem 3 @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 WVList 0 -1 1 1 0 -19 -MItem -35 -../../../../../lib/cmn/alg-search.c -20 -WString -4 -COBJ -21 -WVList -0 -22 -WVList -0 -11 -1 -1 -0 23 MItem 33 -../../../../../lib/cmn/alg-sort.c +../../../../../lib/cmn/alg-rand.c 24 WString 4 @@ -115,8 +113,8 @@ WVList 0 27 MItem -31 -../../../../../lib/cmn/assert.c +35 +../../../../../lib/cmn/alg-search.c 28 WString 4 @@ -133,8 +131,8 @@ WVList 0 31 MItem -32 -../../../../../lib/cmn/chr-cnv.c +33 +../../../../../lib/cmn/alg-sort.c 32 WString 4 @@ -151,8 +149,8 @@ WVList 0 35 MItem -28 -../../../../../lib/cmn/chr.c +31 +../../../../../lib/cmn/assert.c 36 WString 4 @@ -169,8 +167,8 @@ WVList 0 39 MItem -28 -../../../../../lib/cmn/dll.c +32 +../../../../../lib/cmn/chr-cnv.c 40 WString 4 @@ -188,7 +186,7 @@ WVList 43 MItem 28 -../../../../../lib/cmn/env.c +../../../../../lib/cmn/chr.c 44 WString 4 @@ -206,7 +204,7 @@ WVList 47 MItem 28 -../../../../../lib/cmn/fio.c +../../../../../lib/cmn/dll.c 48 WString 4 @@ -224,7 +222,7 @@ WVList 51 MItem 28 -../../../../../lib/cmn/fma.c +../../../../../lib/cmn/env.c 52 WString 4 @@ -242,7 +240,7 @@ WVList 55 MItem 28 -../../../../../lib/cmn/gdl.c +../../../../../lib/cmn/fio.c 56 WString 4 @@ -260,7 +258,7 @@ WVList 59 MItem 28 -../../../../../lib/cmn/htb.c +../../../../../lib/cmn/fma.c 60 WString 4 @@ -278,7 +276,7 @@ WVList 63 MItem 28 -../../../../../lib/cmn/lda.c +../../../../../lib/cmn/fmt.c 64 WString 4 @@ -295,8 +293,8 @@ WVList 0 67 MItem -29 -../../../../../lib/cmn/main.c +28 +../../../../../lib/cmn/gdl.c 68 WString 4 @@ -314,7 +312,7 @@ WVList 71 MItem 28 -../../../../../lib/cmn/mem.c +../../../../../lib/cmn/htb.c 72 WString 4 @@ -332,7 +330,7 @@ WVList 75 MItem 28 -../../../../../lib/cmn/oht.c +../../../../../lib/cmn/lda.c 76 WString 4 @@ -349,8 +347,8 @@ WVList 0 79 MItem -28 -../../../../../lib/cmn/opt.c +29 +../../../../../lib/cmn/main.c 80 WString 4 @@ -367,8 +365,8 @@ WVList 0 83 MItem -35 -../../../../../lib/cmn/path-canon.c +28 +../../../../../lib/cmn/mem.c 84 WString 4 @@ -386,7 +384,7 @@ WVList 87 MItem 28 -../../../../../lib/cmn/pio.c +../../../../../lib/cmn/oht.c 88 WString 4 @@ -404,7 +402,7 @@ WVList 91 MItem 28 -../../../../../lib/cmn/pma.c +../../../../../lib/cmn/opt.c 92 WString 4 @@ -421,8 +419,8 @@ WVList 0 95 MItem -28 -../../../../../lib/cmn/rbt.c +38 +../../../../../lib/cmn/path-basename.c 96 WString 4 @@ -439,8 +437,8 @@ WVList 0 99 MItem -28 -../../../../../lib/cmn/rex.c +35 +../../../../../lib/cmn/path-canon.c 100 WString 4 @@ -458,7 +456,7 @@ WVList 103 MItem 28 -../../../../../lib/cmn/sio.c +../../../../../lib/cmn/pio.c 104 WString 4 @@ -476,7 +474,7 @@ WVList 107 MItem 28 -../../../../../lib/cmn/sll.c +../../../../../lib/cmn/pma.c 108 WString 4 @@ -493,8 +491,8 @@ WVList 0 111 MItem -30 -../../../../../lib/cmn/stdio.c +28 +../../../../../lib/cmn/rbt.c 112 WString 4 @@ -511,8 +509,8 @@ WVList 0 115 MItem -32 -../../../../../lib/cmn/str-beg.c +28 +../../../../../lib/cmn/rex.c 116 WString 4 @@ -529,8 +527,8 @@ WVList 0 119 MItem -32 -../../../../../lib/cmn/str-cat.c +28 +../../../../../lib/cmn/sio.c 120 WString 4 @@ -547,8 +545,8 @@ WVList 0 123 MItem -32 -../../../../../lib/cmn/str-chr.c +28 +../../../../../lib/cmn/sll.c 124 WString 4 @@ -565,8 +563,8 @@ WVList 0 127 MItem -32 -../../../../../lib/cmn/str-cmp.c +30 +../../../../../lib/cmn/stdio.c 128 WString 4 @@ -584,7 +582,7 @@ WVList 131 MItem 32 -../../../../../lib/cmn/str-cnv.c +../../../../../lib/cmn/str-beg.c 132 WString 4 @@ -602,7 +600,7 @@ WVList 135 MItem 32 -../../../../../lib/cmn/str-cpy.c +../../../../../lib/cmn/str-cat.c 136 WString 4 @@ -620,7 +618,7 @@ WVList 139 MItem 32 -../../../../../lib/cmn/str-del.c +../../../../../lib/cmn/str-chr.c 140 WString 4 @@ -638,7 +636,7 @@ WVList 143 MItem 32 -../../../../../lib/cmn/str-dup.c +../../../../../lib/cmn/str-cmp.c 144 WString 4 @@ -655,8 +653,8 @@ WVList 0 147 MItem -33 -../../../../../lib/cmn/str-dynm.c +32 +../../../../../lib/cmn/str-cnv.c 148 WString 4 @@ -673,8 +671,8 @@ WVList 0 151 MItem -33 -../../../../../lib/cmn/str-dynw.c +32 +../../../../../lib/cmn/str-cpy.c 152 WString 4 @@ -692,7 +690,7 @@ WVList 155 MItem 32 -../../../../../lib/cmn/str-end.c +../../../../../lib/cmn/str-del.c 156 WString 4 @@ -709,8 +707,8 @@ WVList 0 159 MItem -33 -../../../../../lib/cmn/str-excl.c +32 +../../../../../lib/cmn/str-dup.c 160 WString 4 @@ -728,7 +726,7 @@ WVList 163 MItem 33 -../../../../../lib/cmn/str-fcpy.c +../../../../../lib/cmn/str-dynm.c 164 WString 4 @@ -746,7 +744,7 @@ WVList 167 MItem 33 -../../../../../lib/cmn/str-incl.c +../../../../../lib/cmn/str-dynw.c 168 WString 4 @@ -764,7 +762,7 @@ WVList 171 MItem 32 -../../../../../lib/cmn/str-len.c +../../../../../lib/cmn/str-end.c 172 WString 4 @@ -781,8 +779,8 @@ WVList 0 175 MItem -32 -../../../../../lib/cmn/str-pac.c +33 +../../../../../lib/cmn/str-excl.c 176 WString 4 @@ -800,7 +798,7 @@ WVList 179 MItem 33 -../../../../../lib/cmn/str-pbrk.c +../../../../../lib/cmn/str-fcpy.c 180 WString 4 @@ -817,8 +815,8 @@ WVList 0 183 MItem -32 -../../../../../lib/cmn/str-put.c +33 +../../../../../lib/cmn/str-incl.c 184 WString 4 @@ -836,7 +834,7 @@ WVList 187 MItem 32 -../../../../../lib/cmn/str-rev.c +../../../../../lib/cmn/str-len.c 188 WString 4 @@ -854,7 +852,7 @@ WVList 191 MItem 32 -../../../../../lib/cmn/str-rot.c +../../../../../lib/cmn/str-pac.c 192 WString 4 @@ -871,8 +869,8 @@ WVList 0 195 MItem -32 -../../../../../lib/cmn/str-set.c +33 +../../../../../lib/cmn/str-pbrk.c 196 WString 4 @@ -890,7 +888,7 @@ WVList 199 MItem 32 -../../../../../lib/cmn/str-spl.c +../../../../../lib/cmn/str-put.c 200 WString 4 @@ -908,7 +906,7 @@ WVList 203 MItem 32 -../../../../../lib/cmn/str-spn.c +../../../../../lib/cmn/str-rev.c 204 WString 4 @@ -926,7 +924,7 @@ WVList 207 MItem 32 -../../../../../lib/cmn/str-str.c +../../../../../lib/cmn/str-rot.c 208 WString 4 @@ -943,8 +941,8 @@ WVList 0 211 MItem -34 -../../../../../lib/cmn/str-subst.c +32 +../../../../../lib/cmn/str-set.c 212 WString 4 @@ -962,7 +960,7 @@ WVList 215 MItem 32 -../../../../../lib/cmn/str-tok.c +../../../../../lib/cmn/str-spl.c 216 WString 4 @@ -980,7 +978,7 @@ WVList 219 MItem 32 -../../../../../lib/cmn/str-trm.c +../../../../../lib/cmn/str-spn.c 220 WString 4 @@ -997,8 +995,8 @@ WVList 0 223 MItem -33 -../../../../../lib/cmn/str-word.c +32 +../../../../../lib/cmn/str-str.c 224 WString 4 @@ -1015,8 +1013,8 @@ WVList 0 227 MItem -29 -../../../../../lib/cmn/time.c +34 +../../../../../lib/cmn/str-subst.c 228 WString 4 @@ -1034,7 +1032,7 @@ WVList 231 MItem 32 -../../../../../lib/cmn/tio-get.c +../../../../../lib/cmn/str-tok.c 232 WString 4 @@ -1052,7 +1050,7 @@ WVList 235 MItem 32 -../../../../../lib/cmn/tio-put.c +../../../../../lib/cmn/str-trm.c 236 WString 4 @@ -1069,8 +1067,8 @@ WVList 0 239 MItem -28 -../../../../../lib/cmn/tio.c +33 +../../../../../lib/cmn/str-word.c 240 WString 4 @@ -1087,8 +1085,8 @@ WVList 0 243 MItem -32 -../../../../../lib/cmn/tre-ast.c +29 +../../../../../lib/cmn/time.c 244 WString 4 @@ -1105,8 +1103,8 @@ WVList 0 247 MItem -36 -../../../../../lib/cmn/tre-compile.c +32 +../../../../../lib/cmn/tio-get.c 248 WString 4 @@ -1123,8 +1121,8 @@ WVList 0 251 MItem -44 -../../../../../lib/cmn/tre-match-backtrack.c +32 +../../../../../lib/cmn/tio-put.c 252 WString 4 @@ -1141,8 +1139,8 @@ WVList 0 255 MItem -43 -../../../../../lib/cmn/tre-match-parallel.c +28 +../../../../../lib/cmn/tio.c 256 WString 4 @@ -1159,8 +1157,8 @@ WVList 0 259 MItem -34 -../../../../../lib/cmn/tre-parse.c +32 +../../../../../lib/cmn/tre-ast.c 260 WString 4 @@ -1177,8 +1175,8 @@ WVList 0 263 MItem -34 -../../../../../lib/cmn/tre-stack.c +36 +../../../../../lib/cmn/tre-compile.c 264 WString 4 @@ -1195,8 +1193,8 @@ WVList 0 267 MItem -28 -../../../../../lib/cmn/tre.c +44 +../../../../../lib/cmn/tre-match-backtrack.c 268 WString 4 @@ -1213,8 +1211,8 @@ WVList 0 271 MItem -28 -../../../../../lib/cmn/xma.c +43 +../../../../../lib/cmn/tre-match-parallel.c 272 WString 4 @@ -1231,8 +1229,8 @@ WVList 0 275 MItem -37 -../../../../..lib/cmn/path-basename.c +34 +../../../../../lib/cmn/tre-parse.c 276 WString 4 @@ -1249,55 +1247,127 @@ WVList 0 279 MItem -3 -*.h +34 +../../../../../lib/cmn/tre-stack.c 280 WString -3 -NIL +4 +COBJ 281 WVList 0 282 WVList 0 --1 +11 1 1 0 283 MItem 28 -../../../../../lib/cmn/mem.h +../../../../../lib/cmn/tre.c 284 WString -3 -NIL +4 +COBJ 285 WVList 0 286 WVList 0 -279 +11 1 1 0 287 MItem -32 -../../../../../lib/cmn/syscall.h +29 +../../../../../lib/cmn/utf8.c 288 WString -3 -NIL +4 +COBJ 289 WVList 0 290 WVList 0 -279 +11 +1 +1 +0 +291 +MItem +28 +../../../../../lib/cmn/xma.c +292 +WString +4 +COBJ +293 +WVList +0 +294 +WVList +0 +11 +1 +1 +0 +295 +MItem +3 +*.h +296 +WString +3 +NIL +297 +WVList +0 +298 +WVList +0 +-1 +1 +1 +0 +299 +MItem +28 +../../../../../lib/cmn/mem.h +300 +WString +3 +NIL +301 +WVList +0 +302 +WVList +0 +295 +1 +1 +0 +303 +MItem +32 +../../../../../lib/cmn/syscall.h +304 +WString +3 +NIL +305 +WVList +0 +306 +WVList +0 +295 1 1 0 diff --git a/qse/watcom/debug/win32/lib/sed/qsesed.tgt b/qse/watcom/debug/win32/lib/sed/qsesed.tgt index ee644011..83850fde 100755 --- a/qse/watcom/debug/win32/lib/sed/qsesed.tgt +++ b/qse/watcom/debug/win32/lib/sed/qsesed.tgt @@ -53,7 +53,7 @@ WString COBJ 13 WVList -1 +2 14 MVState 15 @@ -71,34 +71,32 @@ WString "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include" 0 18 +MVState +19 +WString +3 +WCC +20 +WString +23 +?????Macro definitions: +1 +21 +WString +15 +QSE_BUILD_DEBUG +0 +22 WVList 0 -1 1 1 0 -19 -MItem -28 -../../../../../lib/sed/err.c -20 -WString -4 -COBJ -21 -WVList -0 -22 -WVList -0 -11 -1 -1 -0 23 MItem 28 -../../../../../lib/sed/sed.c +../../../../../lib/sed/err.c 24 WString 4 @@ -116,7 +114,7 @@ WVList 27 MItem 28 -../../../../../lib/sed/std.c +../../../../../lib/sed/sed.c 28 WString 4 @@ -133,26 +131,26 @@ WVList 0 31 MItem -3 -*.h +28 +../../../../../lib/sed/std.c 32 WString -3 -NIL +4 +COBJ 33 WVList 0 34 WVList 0 --1 +11 1 1 0 35 MItem -28 -../../../../../lib/sed/sed.h +3 +*.h 36 WString 3 @@ -163,7 +161,25 @@ WVList 38 WVList 0 -31 +-1 +1 +1 +0 +39 +MItem +28 +../../../../../lib/sed/sed.h +40 +WString +3 +NIL +41 +WVList +0 +42 +WVList +0 +35 1 1 0 diff --git a/qse/watcom/qse.wpj b/qse/watcom/qse.wpj index 2ec0ffd0..53c3f412 100755 --- a/qse/watcom/qse.wpj +++ b/qse/watcom/qse.wpj @@ -97,7 +97,7 @@ VComponent 25 WRect 1080 -2533 +2520 5700 4240 1 @@ -106,8 +106,8 @@ WRect WFileName 30 release/os2/lib/cmn/qsecmn.tgt -13 -21 +0 +0 27 VComponent 28 @@ -144,17 +144,17 @@ release/os2/cmd/sed/qsesed.tgt VComponent 34 WRect -2470 -80 +1030 +1360 5700 4240 -1 +0 0 35 WFileName 28 debug/os2/lib/cmn/qsecmn.tgt -21 +18 21 36 VComponent @@ -177,7 +177,7 @@ VComponent 40 WRect 30 -146 +133 5700 4240 1 @@ -186,14 +186,14 @@ WRect WFileName 30 debug/win32/lib/cmn/qsecmn.tgt -10 -14 +59 +61 42 VComponent 43 WRect -240 -80 +2910 +2453 5700 4240 1 @@ -218,17 +218,17 @@ WRect WFileName 30 debug/win32/lib/awk/qseawk.tgt -8 -9 +0 +0 48 VComponent 49 WRect -930 -880 +2480 +360 5700 4240 -1 +0 0 50 WFileName @@ -251,7 +251,7 @@ WFileName 30 debug/dos32/lib/cmn/qsecmn.tgt 0 -64 +6 54 VComponent 55 @@ -331,7 +331,7 @@ WFileName 30 debug/dos32/cmd/sed/qsesed.tgt 0 -1 +0 69 VComponent 70 @@ -363,7 +363,7 @@ WFileName 30 debug/win32/cmd/sed/qsesed.tgt 0 -1 +0 75 VComponent 76 @@ -380,4 +380,4 @@ WFileName debug/win32/lib/sed/qsesed.tgt 0 0 -30 +48 diff --git a/qse/watcom/release/os2/lib/cmn/qsecmn.tgt b/qse/watcom/release/os2/lib/cmn/qsecmn.tgt index 198660b5..2231989c 100755 --- a/qse/watcom/release/os2/lib/cmn/qsecmn.tgt +++ b/qse/watcom/release/os2/lib/cmn/qsecmn.tgt @@ -42,7 +42,7 @@ WVList 0 10 WPickList -70 +71 11 MItem 3 @@ -1313,8 +1313,8 @@ WVList 0 295 MItem -28 -../../../../../lib/cmn/xma.c +29 +../../../../../lib/cmn/utf8.c 296 WString 4 @@ -1331,26 +1331,26 @@ WVList 0 299 MItem -3 -*.h +28 +../../../../../lib/cmn/xma.c 300 WString -3 -NIL +4 +COBJ 301 WVList 0 302 WVList 0 --1 +11 1 1 0 303 MItem -28 -../../../../../lib/cmn/mem.h +3 +*.h 304 WString 3 @@ -1361,14 +1361,14 @@ WVList 306 WVList 0 -299 +-1 1 1 0 307 MItem -32 -../../../../../lib/cmn/syscall.h +28 +../../../../../lib/cmn/mem.h 308 WString 3 @@ -1379,7 +1379,25 @@ WVList 310 WVList 0 -299 +303 +1 +1 +0 +311 +MItem +32 +../../../../../lib/cmn/syscall.h +312 +WString +3 +NIL +313 +WVList +0 +314 +WVList +0 +303 1 1 0