From 2dda741858ffdcc6d10b0fa1256beccd7bf06b85 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Fri, 1 Jul 2016 14:27:14 +0800 Subject: rename API --- src/pinyin.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/pinyin.h') diff --git a/src/pinyin.h b/src/pinyin.h index d29011b..60f76ed 100644 --- a/src/pinyin.h +++ b/src/pinyin.h @@ -871,7 +871,7 @@ bool pinyin_get_pinyin_offset(pinyin_instance_t * instance, size_t * offset); /** - * pinyin_get_left_character_offset: + * pinyin_get_left_pinyin_offset: * @instance: the pinyin instance. * @offset: the lookup offset. * @left: the left offset. @@ -880,12 +880,12 @@ bool pinyin_get_pinyin_offset(pinyin_instance_t * instance, * Get the left offset from the lookup offset. * */ -bool pinyin_get_left_character_offset(pinyin_instance_t * instance, - size_t offset, - size_t * left); +bool pinyin_get_left_pinyin_offset(pinyin_instance_t * instance, + size_t offset, + size_t * left); /** - * pinyin_get_right_character_offset: + * pinyin_get_right_pinyin_offset: * @instance: the pinyin instance. * @offset: the lookup offset. * @right: the right offset. @@ -894,9 +894,9 @@ bool pinyin_get_left_character_offset(pinyin_instance_t * instance, * Get the right offset from the lookup offset. * */ -bool pinyin_get_right_character_offset(pinyin_instance_t * instance, - size_t offset, - size_t * right); +bool pinyin_get_right_pinyin_offset(pinyin_instance_t * instance, + size_t offset, + size_t * right); /** * pinyin_get_character_offset: -- cgit