mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-09 20:35:49 +01:00
Fix typos in the docs. (#346660, Mark Drago)
2006-07-05 Matthias Clasen <mclasen@redhat.com> * glib/gbase64.c: Fix typos in the docs. (#346660, Mark Drago)
This commit is contained in:
parent
416fbb3a17
commit
5f4e467f33
@ -1,3 +1,8 @@
|
|||||||
|
2006-07-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gbase64.c: Fix typos in the docs. (#346660, Mark
|
||||||
|
Drago)
|
||||||
|
|
||||||
2006-07-03 Runa Bhattacharjee <runabh@gmail.com>
|
2006-07-03 Runa Bhattacharjee <runabh@gmail.com>
|
||||||
|
|
||||||
* configure.in: Added Bengali India (bn_IN) in ALL_LINGUAS.
|
* configure.in: Added Bengali India (bn_IN) in ALL_LINGUAS.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2006-07-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/gbase64.c: Fix typos in the docs. (#346660, Mark
|
||||||
|
Drago)
|
||||||
|
|
||||||
2006-07-03 Runa Bhattacharjee <runabh@gmail.com>
|
2006-07-03 Runa Bhattacharjee <runabh@gmail.com>
|
||||||
|
|
||||||
* configure.in: Added Bengali India (bn_IN) in ALL_LINGUAS.
|
* configure.in: Added Bengali India (bn_IN) in ALL_LINGUAS.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2006-07-05 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/tmpl/base64.sgml: Remove bogus reference
|
||||||
|
to nonexisting function. (#346660, Mark Drago)
|
||||||
|
|
||||||
2006-07-02 Matthias Clasen <mclasen@redhat.com>
|
2006-07-02 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* === Released 2.12.0 ===
|
* === Released 2.12.0 ===
|
||||||
|
@ -17,8 +17,8 @@ for email.
|
|||||||
<para>
|
<para>
|
||||||
GLib supports incremental encoding using g_base64_encode_step() and
|
GLib supports incremental encoding using g_base64_encode_step() and
|
||||||
g_base64_encode_close(). Incremental decoding can be done with
|
g_base64_encode_close(). Incremental decoding can be done with
|
||||||
g_base64_decode_step() and g_base64_decode_close(). To encode or
|
g_base64_decode_step(). To encode or decode data in one go, use
|
||||||
decode data in one go, use g_base64_encode() of g_base64_decode().
|
g_base64_encode() or g_base64_decode().
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
@ -46,11 +46,11 @@ static const char base64_alphabet[] =
|
|||||||
* @save: Saved state between steps, initialize to 0
|
* @save: Saved state between steps, initialize to 0
|
||||||
*
|
*
|
||||||
* Incrementally encode a sequence of binary data into it's Base-64 stringified
|
* Incrementally encode a sequence of binary data into it's Base-64 stringified
|
||||||
* representation. By calling this functions multiple times you can convert data
|
* representation. By calling this function multiple times you can convert
|
||||||
* in chunks to avoid having to have the full encoded data in memory.
|
* data in chunks to avoid having to have the full encoded data in memory.
|
||||||
*
|
*
|
||||||
* When all the data has been converted you must call g_base64_encode_close()
|
* When all of the data has been converted you must call
|
||||||
* to flush the saved state.
|
* g_base64_encode_close() to flush the saved state.
|
||||||
*
|
*
|
||||||
* The output buffer must be large enough to fit all the data that will
|
* The output buffer must be large enough to fit all the data that will
|
||||||
* be written to it. Due to the way base64 encodes you will need
|
* be written to it. Due to the way base64 encodes you will need
|
||||||
@ -58,8 +58,8 @@ static const char base64_alphabet[] =
|
|||||||
* need at least: @len * 4 / 3 + @len * 4 / (3 * 72) + 7 bytes.
|
* need at least: @len * 4 / 3 + @len * 4 / (3 * 72) + 7 bytes.
|
||||||
*
|
*
|
||||||
* @break_lines is typically used when putting base64-encoded data in emails.
|
* @break_lines is typically used when putting base64-encoded data in emails.
|
||||||
* It breaks the lines at 72 columns instead of putting all text on the same
|
* It breaks the lines at 72 columns instead of putting all of the text on
|
||||||
* line. This avoids problems with long lines in the email system.
|
* the same line. This avoids problems with long lines in the email system.
|
||||||
*
|
*
|
||||||
* Return value: The number of bytes of output that was written
|
* Return value: The number of bytes of output that was written
|
||||||
*
|
*
|
||||||
@ -204,7 +204,7 @@ g_base64_encode_close (gboolean break_lines,
|
|||||||
* @data: the binary data to encode.
|
* @data: the binary data to encode.
|
||||||
* @len: the length of @data.
|
* @len: the length of @data.
|
||||||
*
|
*
|
||||||
* Encode a sequence of binary data into it's Base-64 stringified
|
* Encode a sequence of binary data into its Base-64 stringified
|
||||||
* representation.
|
* representation.
|
||||||
*
|
*
|
||||||
* Return value: a newly allocated, zero-terminated Base-64 encoded
|
* Return value: a newly allocated, zero-terminated Base-64 encoded
|
||||||
@ -258,9 +258,9 @@ static const unsigned char mime_base64_rank[256] = {
|
|||||||
* @state: Saved state between steps, initialize to 0
|
* @state: Saved state between steps, initialize to 0
|
||||||
* @save: Saved state between steps, initialize to 0
|
* @save: Saved state between steps, initialize to 0
|
||||||
*
|
*
|
||||||
* Incrementally decode a sequence of binary data from it's Base-64 stringified
|
* Incrementally decode a sequence of binary data from its Base-64 stringified
|
||||||
* representation. By calling this functions multiple times you can convert data
|
* representation. By calling this function multiple times you can convert
|
||||||
* in chunks to avoid having to have the full encoded data in memory.
|
* data in chunks to avoid having to have the full encoded data in memory.
|
||||||
*
|
*
|
||||||
* The output buffer must be large enough to fit all the data that will
|
* The output buffer must be large enough to fit all the data that will
|
||||||
* be written to it. Since base64 encodes 3 bytes in 4 chars you need
|
* be written to it. Since base64 encodes 3 bytes in 4 chars you need
|
||||||
@ -324,11 +324,11 @@ g_base64_decode_step (const gchar *in,
|
|||||||
/**
|
/**
|
||||||
* g_base64_decode:
|
* g_base64_decode:
|
||||||
* @text: zero-terminated string with base64 text to decode.
|
* @text: zero-terminated string with base64 text to decode.
|
||||||
* @out_len: The lenght of the decoded data is written here.
|
* @out_len: The length of the decoded data is written here.
|
||||||
*
|
*
|
||||||
* Decode a sequence of Base-64 encoded text into binary data
|
* Decode a sequence of Base-64 encoded text into binary data
|
||||||
*
|
*
|
||||||
* Return value: a newly allocated, buffer containing the binary data
|
* Return value: a newly allocated buffer containing the binary data
|
||||||
* that @text represents
|
* that @text represents
|
||||||
*
|
*
|
||||||
* Since: 2.12
|
* Since: 2.12
|
||||||
|
Loading…
x
Reference in New Issue
Block a user