documented qse_awk_rtx_valtostr() and renamed qse_awk_rtx_valtostrdup()

to qse_awk_rtx_valtocpldup()
This commit is contained in:
2009-03-02 03:58:19 +00:00
parent 0b89f7e322
commit 004ba389f2
16 changed files with 233 additions and 88 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk02.c 86 2009-02-26 12:55:05Z hyunghwan.chung $
* $Id: awk02.c 90 2009-03-01 09:58:19Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -16,9 +16,9 @@
limitations under the License.
*/
/****S* AWK/Basic Loop
/****S* AWK/Basic Loop With Deparsing
* DESCRIPTION
* This program demonstrates how to use qse_awk_rtx_loop().
* The program deparses the source code and prints it before executing it.
* SOURCE
*/

View File

@ -1,5 +1,5 @@
/*
* $Id: awk03.c 89 2009-02-28 15:27:03Z hyunghwan.chung $
* $Id: awk03.c 90 2009-03-01 09:58:19Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -103,7 +103,7 @@ int main ()
ret = -1; goto oops;
}
str = qse_awk_rtx_valtostrdup (rtx, v, &len);
str = qse_awk_rtx_valtocpldup (rtx, v, &len);
if (str == QSE_NULL)
{
qse_fprintf (QSE_STDERR, QSE_T("error: %s\n"),

View File

@ -1,5 +1,5 @@
/*
* $Id: awk04.c 89 2009-02-28 15:27:03Z hyunghwan.chung $
* $Id: awk04.c 90 2009-03-01 09:58:19Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -105,7 +105,7 @@ int main ()
ret = -1; goto oops;
}
str = qse_awk_rtx_valtostrdup (rtx, v, &len);
str = qse_awk_rtx_valtocpldup (rtx, v, &len);
if (str == QSE_NULL)
{
qse_fprintf (QSE_STDERR, QSE_T("error: %s\n"),