]> code.bitgloo.com Git - clyne/arabtype.git/commitdiff
more formatting
authorElOraiby <wael.eloraiby@gmail.com>
Mon, 1 Jun 2015 00:14:19 +0000 (20:14 -0400)
committerElOraiby <wael.eloraiby@gmail.com>
Mon, 1 Jun 2015 00:14:19 +0000 (20:14 -0400)
README.md

index 4b9e9832e8308f3eedc64c9e9a56286f7f2d57c5..c33f34cd86acedca953c42d33fe96a893c301bd9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -8,17 +8,26 @@ It's worthy to note that this is far more lightweight than HarfBuzz (used by Qt/
 Freetype 2 on the other hand lacks this functionality.
 
 <U><B>Usage:</B></U>
+
 One call will convert a utf8 string to a sequence of code points:
 
 ```C
-size_t get_presentation_form_b(size_t in_len, unsigned char *in_str, size_t out_len, uint32_t* out_cp);
+size_t get_presentation_form_b(size_t in_len,
+                               unsigned char *in_str,
+                               size_t out_len,
+                               uint32_t* out_cp);
 ```
 
 Where
+
 `in_len`: the input utf8 string length in bytes
+
 `in_str`: the input utf8 string
+
 `out_len`: output code point buffer size (in bytes)
+
 `out_cp`: output code point buffer     
+
 `return`: return the total number of code points transformed
 
 <U><B>Details:</B></U>