touched up code a bit

This commit is contained in:
2009-12-22 06:44:33 +00:00
parent d418e651e5
commit 200a3f6656
7 changed files with 18 additions and 13 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: Sed.hpp 320 2009-12-21 12:29:52Z hyunghwan.chung $
* $Id: Sed.hpp 321 2009-12-21 12:44:33Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
This file is part of QSE.
@ -93,7 +93,7 @@ public:
void setHandle (void* handle) { arg->handle = handle; }
/// The getName() function returns an I/O name.
/// @return QSE_NULL for the main data stream,
/// @return #QSE_NULL for the main data stream,
/// file path for explicit file stream
const char_t* getName () const { return arg->path; }

View File

@ -25,6 +25,10 @@
/** @file
* This file defines a simple stream editor.
*
* @example sed01.c
* This example shows how to write a simple stream editor using easy API
* functions.
*/
#ifdef __cplusplus
@ -59,8 +63,8 @@ int qse_sed_compstd (
/**
* The qse_sed_execstd() function executes the compiled script
* over an input file @a infile and an output file @a outfile.
* If @infile is QSE_NULL, the standard console input is used.
* If @outfile is QSE_NULL, the standard console output is used.
* If @a infile is QSE_NULL, the standard console input is used.
* If @a outfile is QSE_NULL, the standard console output is used.
*/
int qse_sed_execstd (
qse_sed_t* sed,