[svn:parrot] r37820 - in trunk: src t/codingstd

coke at svn.parrot.org coke at svn.parrot.org
Mon Mar 30 16:29:08 UTC 2009


Author: coke
Date: Mon Mar 30 16:29:06 2009
New Revision: 37820
URL: https://trac.parrot.org/parrot/changeset/37820

Log:
[t/docs] fixup function sigs, add boilerplate for new un-doc'ed function.

Begin to sort the failing files a bit.

Modified:
   trunk/src/datatypes.c
   trunk/t/codingstd/c_function_docs.t

Modified: trunk/src/datatypes.c
==============================================================================
--- trunk/src/datatypes.c	Mon Mar 30 15:13:10 2009	(r37819)
+++ trunk/src/datatypes.c	Mon Mar 30 16:29:06 2009	(r37820)
@@ -27,7 +27,7 @@
 
 /*
 
-=item C<INTVAL Parrot_get_datatype_enum>
+=item C<INTVAL Parrot_get_datatype_enum(PARROT_INTERP, const STRING *type_name)>
 
 Return datatype C<enum> for C<STRING*> type_name.
 
@@ -58,7 +58,7 @@
 
 /*
 
-=item C<STRING * Parrot_get_datatype_name>
+=item C<STRING * Parrot_get_datatype_name(PARROT_INTERP, INTVAL type)>
 
 Return datatype name for C<type>.
 
@@ -81,6 +81,13 @@
     return string_make(interp, s, strlen(s), NULL, PObj_external_FLAG);
 }
 
+/*
+
+=item C<FLOATVAL floatval_divide_by_zero(PARROT_INTERP, FLOATVAL num)>
+
+=cut
+
+*/
 
 PARROT_EXPORT
 FLOATVAL

Modified: trunk/t/codingstd/c_function_docs.t
==============================================================================
--- trunk/t/codingstd/c_function_docs.t	Mon Mar 30 15:13:10 2009	(r37819)
+++ trunk/t/codingstd/c_function_docs.t	Mon Mar 30 16:29:06 2009	(r37820)
@@ -115,6 +115,8 @@
 
 __DATA__
 
+# unchecked
+
 compilers/imcc/debug.c
 compilers/imcc/imc.c
 compilers/imcc/instructions.c
@@ -195,7 +197,6 @@
 src/string/charset/unicode.c
 
 src/byteorder.c
-src/datatypes.c
 src/debug.c
 src/dynext.c
 src/embed.c
@@ -240,6 +241,8 @@
 src/tsq.c
 src/utils.c
 
+# Needs docs written. Boilerplate in place.
+src/datatypes.c
 
 # Local Variables:
 #   mode: cperl


More information about the parrot-commits mailing list