mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 15:06:14 +01:00
Some doc fixes. (#111805)
2003-05-05 Matthias Clasen <maclas@gmx.de> * glib/gstrfuncs.c (g_ascii_dtostr): (g_ascii_formatd): (g_ascii_strtod): Some doc fixes. (#111805)
This commit is contained in:
parent
7feee9b513
commit
8e80b63b1a
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-05-05 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* glib/gstrfuncs.c (g_ascii_dtostr):
|
||||
(g_ascii_formatd):
|
||||
(g_ascii_strtod): Some doc fixes. (#111805)
|
||||
|
||||
2003-05-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sr and sr@Latn to ALL_LINGUAS.
|
||||
|
@ -327,7 +327,7 @@ g_strtod (const gchar *nptr,
|
||||
* To handle input from the user you should normally use the
|
||||
* locale-sensitive system strtod() function.
|
||||
*
|
||||
* To convert from a string to #gdouble in a locale-insensitive
|
||||
* To convert from a #gdouble to a string in a locale-insensitive
|
||||
* way, use g_ascii_dtostr().
|
||||
*
|
||||
* If the correct value would cause overflow, plus or minus %HUGE_VAL
|
||||
@ -477,7 +477,7 @@ g_ascii_strtod (const gchar *nptr,
|
||||
* decimal point.
|
||||
*
|
||||
* This functions generates enough precision that converting
|
||||
* the string back using g_strtod() gives the same machine-number
|
||||
* the string back using g_ascii_strtod() gives the same machine-number
|
||||
* (on machines with IEEE compatible 64bit doubles). It is
|
||||
* guaranteed that the size of the resulting string will never
|
||||
* be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes.
|
||||
@ -496,13 +496,13 @@ g_ascii_dtostr (gchar *buffer,
|
||||
* g_ascii_formatd:
|
||||
* @buffer: A buffer to place the resulting string in
|
||||
* @buf_len: The length of the buffer.
|
||||
* @format: The printf-style format to use for the
|
||||
* @format: The printf()-style format to use for the
|
||||
* code to use for converting.
|
||||
* @d: The #gdouble to convert
|
||||
*
|
||||
* Converts a #gdouble to a string, using the '.' as
|
||||
* decimal point. To format the number you pass in
|
||||
* a printf-style formating string. Allowed conversion
|
||||
* a printf()-style format string. Allowed conversion
|
||||
* specifiers are 'e', 'E', 'f', 'F', 'g' and 'G'.
|
||||
*
|
||||
* If you just want to want to serialize the value into a
|
||||
|
Loading…
Reference in New Issue
Block a user