From: handa Date: Sat, 24 May 2008 14:17:56 +0000 (+0000) Subject: (mdebug_dump_flt): Change return value to (MFLT *). X-Git-Tag: REL-1-5-2~14 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce8759554e18e64fe515ea4ec37e7e62796f85c2;p=m17n%2Fm17n-lib.git (mdebug_dump_flt): Change return value to (MFLT *). --- diff --git a/src/m17n-flt.c b/src/m17n-flt.c index d9d78cc..ed9f83b 100644 --- a/src/m17n-flt.c +++ b/src/m17n-flt.c @@ -2759,7 +2759,17 @@ dump_flt_cmd (FontLayoutStage *stage, int id, int indent) fprintf (stderr, "(predefiend %d)", id); } -void +/***en + @brief Dump a Font Layout Table. + + The mdebug_dump_flt () function prints the Font Layout Table $FLT + in a human readable way to the stderr. $INDENT specifies how many + columns to indent the lines but the first one. + + @return + This function returns $FLT. */ + +MFLT * mdebug_dump_flt (MFLT *flt, int indent) { char *prefix = (char *) alloca (indent + 1); @@ -2784,6 +2794,7 @@ mdebug_dump_flt (MFLT *flt, int indent) stage_idx++; } fprintf (stderr, ")"); + return flt; } /*** @} */