~ubuntu-branches/ubuntu/trusty/glib2.0/trusty-proposed

« back to all changes in this revision

Viewing changes to glib/gstring.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-03-04 13:08:00 UTC
  • mfrom: (1.63.34)
  • Revision ID: package-import@ubuntu.com-20140304130800-6f4fs4s8iri00blg
Tags: 2.39.91-0ubuntu1
* New upstream release 2.39.91
* revert-0001-Improve-GAsyncQueue-test-coverage.patch: Drop, fixed upstream.
* Re-enable test_timer_stop to gather more information about the failure.
* debian/libglib2.0-0.symbols: Update with new symbols in this release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
 * of the newly added area are undefined. (However, as
384
384
 * always, string->str[string->len] will be a nul byte.)
385
385
 *
386
 
 * Return value: @string
 
386
 * Returns: @string
387
387
 */
388
388
GString *
389
389
g_string_set_size (GString *string,
653
653
 * Converts a Unicode character into UTF-8, and appends it
654
654
 * to the string.
655
655
 *
656
 
 * Return value: @string
 
656
 * Returns: @string
657
657
 */
658
658
GString *
659
659
g_string_append_unichar (GString  *string,
738
738
 * Converts a Unicode character into UTF-8, and prepends it
739
739
 * to the string.
740
740
 *
741
 
 * Return value: @string
 
741
 * Returns: @string
742
742
 */
743
743
GString *
744
744
g_string_prepend_unichar (GString  *string,
821
821
 * Converts a Unicode character into UTF-8, and insert it
822
822
 * into the string at the given position.
823
823
 *
824
 
 * Return value: @string
 
824
 * Returns: @string
825
825
 */
826
826
GString *
827
827
g_string_insert_unichar (GString  *string,
902
902
 *
903
903
 * Overwrites part of a string, lengthening it if necessary.
904
904
 *
905
 
 * Return value: @string
 
905
 * Returns: @string
906
906
 *
907
907
 * Since: 2.14
908
908
 */
925
925
 * Overwrites part of a string, lengthening it if necessary.
926
926
 * This function will work with embedded nuls.
927
927
 *
928
 
 * Return value: @string
 
928
 * Returns: @string
929
929
 *
930
930
 * Since: 2.14
931
931
 */
1008
1008
 *
1009
1009
 * Converts all uppercase ASCII letters to lowercase ASCII letters.
1010
1010
 *
1011
 
 * Return value: passed-in @string pointer, with all the
 
1011
 * Returns: passed-in @string pointer, with all the
1012
1012
 *     uppercase characters converted to lowercase in place,
1013
1013
 *     with semantics that exactly match g_ascii_tolower().
1014
1014
 */
1039
1039
 *
1040
1040
 * Converts all lowercase ASCII letters to uppercase ASCII letters.
1041
1041
 *
1042
 
 * Return value: passed-in @string pointer, with all the
 
1042
 * Returns: passed-in @string pointer, with all the
1043
1043
 *     lowercase characters converted to uppercase in place,
1044
1044
 *     with semantics that exactly match g_ascii_toupper().
1045
1045
 */
1104
1104
 *
1105
1105
 * Converts a #GString to uppercase.
1106
1106
 *
1107
 
 * Return value: @string
 
1107
 * Returns: @string
1108
1108
 *
1109
1109
 * Deprecated:2.2: This function uses the locale-specific
1110
1110
 *     toupper() function, which is almost never the right thing.