added qse_mbsrot()/qse_wcsrot()/qse_mbsrev()/qse_wcsrev() and related functions

This commit is contained in:
2011-04-15 06:42:48 +00:00
parent 6af502fa30
commit e1d7784e4e
10 changed files with 465 additions and 117 deletions

View File

@ -287,6 +287,16 @@ pio1 (QSE_T("ls -laF"), QSE_PIO_READOUT|QSE_PIO_WRITEIN|/*QSE_PIO_SHELL|*/QSE_PI
}
}
{
qse_char_t abc[100];
qse_strcpy (abc, QSE_T("abcdefghilklmn"));
qse_strrev (abc);
qse_printf (QSE_T("<%s>\n"), abc);
qse_strrot (abc, -1, 5);
qse_printf (QSE_T("<%s>\n"), abc);
}
{
qse_scm_ent_t* x1, * x2;