sed - enhanced a function to get text following 'a', 'i', 'c'.

This commit is contained in:
2009-03-11 07:38:35 +00:00
parent 791565aa2b
commit 2e818033c9
4 changed files with 41 additions and 30 deletions

View File

@ -41,7 +41,9 @@ enum qse_sed_errnum_t
enum qse_sed_option_t
{
QSE_SED_STRIPLS = (1 << 0) /* strip leading spaces from text*/
QSE_SED_STRIPLS = (1 << 0), /* strip leading spaces from text*/
QSE_SED_KEEPTBS = (1 << 1), /* keep an trailing backslash */
QSE_SED_ENSURENL = (1 << 2) /* ensure NL at the text end */
};
typedef struct qse_sed_t qse_sed_t;