From 8488b72f98d15d6101a2f90cf9c0172fc13a2aed Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 5 Sep 2008 05:15:53 +0000 Subject: [PATCH] --- ase/include/ase/cmn/str.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ase/include/ase/cmn/str.h b/ase/include/ase/cmn/str.h index 93f3c2bd..eee2415c 100644 --- a/ase/include/ase/cmn/str.h +++ b/ase/include/ase/cmn/str.h @@ -1,5 +1,5 @@ /* - * $Id: str.h 365 2008-09-04 11:05:14Z baconevi $ + * $Id: str.h 366 2008-09-04 11:15:53Z baconevi $ * * {License} */ @@ -11,6 +11,7 @@ #include #define ASE_STR_LEN(x) ((x)->size) +#define ASE_STR_PTR(x) ((x)->buf) #define ASE_STR_SIZE(x) ((x)->size + 1) #define ASE_STR_CAPA(x) ((x)->capa) #define ASE_STR_BUF(x) ((x)->buf)