diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-07-09 19:32:16 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-07-09 19:32:16 +0000 |
commit | f1c0e401ab20b027bfe4fd14c9ba34d0e89ed2cd (patch) | |
tree | 71b8e4b1849df132e0a388360e18fc81568cdd77 /glib/gprintf.c | |
parent | 27b50b6d439a3e3a302d848d4dadfe3b37a5aa7f (diff) | |
download | glib-f1c0e401ab20b027bfe4fd14c9ba34d0e89ed2cd.tar.gz |
Doc additions.
2003-07-12 Matthias Clasen <maclas@gmx.de>
* glib/gprintf.c: Doc additions.
2003-07-12 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/string_utils.sgml: Add a paragraph about string precision, add links to it.
Remove markup which is now handled better by gtk-doc.
Diffstat (limited to 'glib/gprintf.c')
-rw-r--r-- | glib/gprintf.c | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/glib/gprintf.c b/glib/gprintf.c index 209abf6cd..0603cd98a 100644 --- a/glib/gprintf.c +++ b/glib/gprintf.c @@ -33,7 +33,8 @@ /** * g_printf: - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @Varargs: the arguments to insert in the output. * * An implementation of the standard printf() function which supports @@ -60,7 +61,8 @@ g_printf (gchar const *format, /** * g_fprintf: * @file: the stream to write to. - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @Varargs: the arguments to insert in the output. * * An implementation of the standard fprintf() function which supports @@ -88,7 +90,8 @@ g_fprintf (FILE *file, /** * g_sprintf: * @string: the buffer to hold the output. - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @Varargs: the arguments to insert in the output. * * An implementation of the standard sprintf() function which supports @@ -118,7 +121,8 @@ g_sprintf (gchar *string, * @string: the buffer to hold the output. * @n: the maximum number of characters to produce (including the * terminating nul character). - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @Varargs: the arguments to insert in the output. * * A safer form of the standard sprintf() function. The output is guaranteed @@ -160,7 +164,8 @@ g_snprintf (gchar *string, /** * g_vprintf: - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @args: the list of arguments to insert in the output. * * An implementation of the standard vprintf() function which supports @@ -182,7 +187,8 @@ g_vprintf (gchar const *format, /** * g_vfprintf: * @file: the stream to write to. - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @args: the list of arguments to insert in the output. * * An implementation of the standard fprintf() function which supports @@ -205,7 +211,8 @@ g_vfprintf (FILE *file, /** * g_vsprintf: * @string: the buffer to hold the output. - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @args: the list of arguments to insert in the output. * * An implementation of the standard vsprintf() function which supports @@ -231,7 +238,8 @@ g_vsprintf (gchar *string, * @string: the buffer to hold the output. * @n: the maximum number of characters to produce (including the * terminating nul character). - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @args: the list of arguments to insert in the output. * * A safer form of the standard vsprintf() function. The output is guaranteed @@ -270,7 +278,8 @@ g_vsnprintf (gchar *string, /** * g_vasprintf: * @string: the return location for the newly-allocated string. - * @format: the format string. See the printf() documentation. + * @format: a standard printf() format string, but notice + * <link linkend="string-precision">string precision pitfalls</link>. * @args: the list of arguments to insert in the output. * * An implementation of the GNU vasprintf() function which supports |