*** empty log message ***

This commit is contained in:
2006-07-20 16:21:54 +00:00
parent 75a3eaeac0
commit 40b4aecca7
3 changed files with 207 additions and 49 deletions

View File

@ -23,7 +23,7 @@ int xp_main (int argc, const xp_char_t* argv[])
}
ptn = XP_T("^he.llo");
ptn = XP_T("^he.llo(jo(in|kk)s|com)+h*e{1,40}abc");
if (xp_awk_rex_compile (rex, ptn, xp_strlen(ptn)) == -1)
{
xp_printf (XP_T("cannot compile pattern...\n"));
@ -31,6 +31,7 @@ int xp_main (int argc, const xp_char_t* argv[])
return -1;
}
xp_awk_rex_print (rex);
xp_awk_rex_close (rex);
return 0;
}