migrated fs/path.c to cmn/path.c

This commit is contained in:
2011-10-14 22:57:41 +00:00
parent b5b23cbc36
commit 23ee1f7f51
24 changed files with 148 additions and 72 deletions

View File

@ -111,6 +111,26 @@ int qse_sed_compstd (
qse_size_t* count /**< number of input scripts opened */
);
/**
* The qse_sed_compstdfile() function compiles a sed script from
* a single file @a infile.
* @return 0 on success, -1 on failure
*/
int qse_sed_compstdfile (
qse_sed_t* sed,
const qse_char_t* infile
);
/**
* The qse_sed_compstdmem() function compiles a sed script stored
* in a null-terminated string pointed to by @a str.
* @return 0 on success, -1 on failure
*/
int qse_sed_compstdmem (
qse_sed_t* sed,
const qse_char_t* str
);
/**
* The qse_sed_execstd() function executes a compiled script
* over input streams @a in and an output stream @a out.