summaryrefslogtreecommitdiff
path: root/src/cairo-unicode.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 15:35:48 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 15:35:48 -0700
commit4670366ede0b0ed1abf47f4595a64bc5cd3c19fc (patch)
tree6200d30b9035b419bdbcd8fe68708c3d120b3996 /src/cairo-unicode.c
parent80b8deb1e4f9d0b856106031c6a7a629cca7552c (diff)
downloadcairo-4670366ede0b0ed1abf47f4595a64bc5cd3c19fc.tar.gz
Remove trailing whitespace from lines that look like comments.
This patch was produced with the following (GNU) sed script: sed -i -r -e '/^[ \t]*\/?\*/ s/[ \t]+$//' run on all *.[ch] files within cairo, (though I manually excluded src/cairo-atsui-font.c which has a code line that appears as a comment to this script).
Diffstat (limited to 'src/cairo-unicode.c')
-rw-r--r--src/cairo-unicode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cairo-unicode.c b/src/cairo-unicode.c
index 0c0dff2e9..cf7c37367 100644
--- a/src/cairo-unicode.c
+++ b/src/cairo-unicode.c
@@ -1,5 +1,5 @@
/* cairo_unicode.c: Unicode conversion routines
- *
+ *
* The code in this file is derived from GLib's gutf8.c and
* ultimately from libunicode. It is relicensed under the
* dual LGPL/MPL with permission of the original authors.
@@ -208,13 +208,13 @@ _utf8_get_char_extended (const unsigned char *p,
* @result: location to store a pointer to a newly allocated UTF-32
* string (always native endian). Free with free(). A 0
* word will be written after the last character.
- * @items_written: location to store number of 32-bit words
+ * @items_written: location to store number of 32-bit words
* written. (Not including the trailing 0)
*
* Converts a UTF-8 string to UCS-4. UCS-4 is an encoding of Unicode
* with 1 32-bit word per character. The string is validated to
* consist entirely of valid Unicode characters.
- *
+ *
* Return value: %CAIRO_STATUS_SUCCESS if the entire string was
* succesfully converted. %CAIRO_STATUS_INVALID_STRING if an
* an invalid sequence was found.
@@ -271,14 +271,14 @@ _cairo_utf8_to_ucs4 (const unsigned char *str,
* @result: location to store a pointer to a newly allocated UTF-16
* string (always native endian). Free with free(). A 0
* word will be written after the last character.
- * @items_written: location to store number of 16-bit words
+ * @items_written: location to store number of 16-bit words
* written. (Not including the trailing 0)
*
* Converts a UTF-8 string to UTF-16. UTF-16 is an encoding of Unicode
* where characters are represented either as a single 16-bit word, or
* as a pair of 16-bit "surrogates". The string is validated to
* consist entirely of valid Unicode characters.
- *
+ *
* Return value: %CAIRO_STATUS_SUCCESS if the entire string was
* succesfully converted. %CAIRO_STATUS_INVALID_STRING if an
* an invalid sequence was found.