From b348cbc5a0cc19ac4f601e9d73b6851768331e5d Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 28 Jun 2016 10:58:13 +0800 Subject: fixes pinyin_get_character_offset function --- src/pinyin.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/pinyin.h') diff --git a/src/pinyin.h b/src/pinyin.h index 3400568..c691197 100644 --- a/src/pinyin.h +++ b/src/pinyin.h @@ -901,16 +901,16 @@ bool pinyin_get_right_character_offset(pinyin_instance_t * instance, /** * pinyin_get_character_offset: * @instance: the pinyin instance. - * @offset: the lookup offset. - * @length: the character offset. + * @cursor: the lookup cursor. + * @offset: the character offset. * @returns: whether the get operation is successful. * - * Get the character offset from the lookup offset. + * Get the character offset from the lookup cursor. * */ bool pinyin_get_character_offset(pinyin_instance_t * instance, - size_t offset, - size_t * length); + size_t cursor, + size_t * offset); #if 0 /** -- cgit