[svn:parrot] r36158 - trunk/docs/pdds
allison at svn.parrot.org
allison at svn.parrot.org
Thu Jan 29 22:29:27 UTC 2009
Author: allison
Date: Thu Jan 29 21:03:49 2009
New Revision: 36158
URL: https://trac.parrot.org/parrot/log/branches?rev=36158
Log:
[pdd28str] Some function name cleanup, while working on the strings refactor
branch.
Modified:
trunk/docs/pdds/pdd28_strings.pod
Modified: trunk/docs/pdds/pdd28_strings.pod
==============================================================================
--- trunk/docs/pdds/pdd28_strings.pod Thu Jan 29 20:57:33 2009 (r36157)
+++ trunk/docs/pdds/pdd28_strings.pod Thu Jan 29 21:03:49 2009 (r36158)
@@ -396,20 +396,16 @@
in place). If the first argument is COW or read-only, then the return value is
a new string.
-=head3 Parrot_str_from_cstring (was string_from_cstring)
+=head3 Parrot_str_new (was string_from_cstring)
-Create a Parrot string from a C string (a C<char *>). Takes two arguments, a C
-string, and an integer length of the string (number of characters). If the
-integer length isn't passed, the function will calculate the length.
+Return a new string with the default encoding and character set. Accepts two
+arguments, a C string (C<char *>) to initialize the value of the string, and an
+integer length of the string (number of characters). If the integer length
+isn't passed, the function will calculate the length.
{{NOTE: the integer length isn't really necessary, and is under consideration
for deprecation.}}
-=head3 Parrot_str_new
-
-Return a new string with the default encoding and character set. Accepts one
-argument, a C string (C<char *>) to initialize the value of the string.
-
=head3 Parrot_str_new_noinit (was string_make_empty)
Returns a new empty string with the default encoding and chararacter set.
@@ -565,12 +561,12 @@
The following functions are used internally and are not part of the public
interface.
-=head3 string_system_init (was string_init)
+=head3 Parrot_str_init (was string_init)
Initialize Parrot's string subsystem, including string allocation and garbage
collection.
-=head3 string_system_end (was string_deinit)
+=head3 Parrot_str_finish (was string_deinit)
Terminate and clean up Parrot's string subsystem, including string allocation
and garbage collection.
More information about the parrot-commits
mailing list