touched up sed a little

This commit is contained in:
2009-08-26 07:07:54 +00:00
parent 9253c8644f
commit 1f29eb2521
6 changed files with 85 additions and 81 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: sed.h 257 2009-08-17 12:10:30Z hyunghwan.chung $
* $Id: sed.h 268 2009-08-25 13:07:54Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -58,6 +58,16 @@
*/
typedef struct qse_sed_t qse_sed_t;
/**
* The qse_sed_loc_t defines a structure to store location information.
*/
typedef struct qse_sed_loc_t qse_sed_loc_t;
struct qse_sed_loc_t
{
qse_size_t lin; /**< line */
qse_size_t col; /**< column */
};
/**
* the qse_sed_errnum_t type defines error numbers.
*/