diff options
author | ElOraiby <wael.eloraiby@gmail.com> | 2015-05-31 20:11:46 -0400 |
---|---|---|
committer | ElOraiby <wael.eloraiby@gmail.com> | 2015-05-31 20:11:46 -0400 |
commit | 198b0eef667930341321f43bdd2da283658549b2 (patch) | |
tree | 1540a74e49d0ce5e88a15e590cf4aaa4fb9baf3a /arabtype.h | |
parent | 2b81c17e2ca89df942479f51b8057ac713abe2d4 (diff) |
one simple call to convert a utf8 string to arabic codepoints
Diffstat (limited to 'arabtype.h')
-rw-r--r-- | arabtype.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -25,12 +25,13 @@ extern "C" { /** * @brief get_presentation_form_b - * @param prev previous character - * @param next next character - * @param cp the current character - * @return 0 ignore the code point, the transformed code point otherise + * @param in_len input utf8 string length + * @param in_str input utf8 string + * @param out_len output code point buffer size (in bytes) + * @param out_cp output code point buffer + * @return */ -uint32_t get_presentation_form_b(uint32_t prev, uint32_t next, uint32_t cp); +size_t get_presentation_form_b(size_t in_len, unsigned char *in_str, size_t out_len, uint32_t* out_cp); #ifdef __cplusplus } |