From: Hyunjee Kim Date: Wed, 29 Apr 2020 02:54:55 +0000 (+0900) Subject: Sync api names with source file and header file X-Git-Tag: accepted/tizen/unified/20200506.100220^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6abe82ee64e5ff1dbe3655d93e99d3d8f355a082;p=platform%2Fcore%2Fapi%2Fbase-utils.git Sync api names with source file and header file Change-Id: I3158853761fd534dfc766ec0a395a89af8caf843 Signed-off-by: Hyunjee Kim --- diff --git a/src/include/utils_i18n.h b/src/include/utils_i18n.h index 8e5f4d7..538cf98 100644 --- a/src/include/utils_i18n.h +++ b/src/include/utils_i18n.h @@ -4677,7 +4677,7 @@ extern "C" { * * * @ref CAPI_BASE_UTILS_I18N_UCNV_MODULE - * #i18n_ucnv_get_CCSID + * #i18n_ucnv_get_ccsid * ucnv_getCCSID * * diff --git a/src/utils_i18n_ucnv.c b/src/utils_i18n_ucnv.c index 4e225fe..533ad86 100644 --- a/src/utils_i18n_ucnv.c +++ b/src/utils_i18n_ucnv.c @@ -61,7 +61,7 @@ int i18n_ucnv_create_unicode(const i18n_uchar *name, i18n_ucnv_h *converter) return i18n_error; } -int i18n_ucnv_create_CCSID(int32_t codepage, i18n_ucnv_platform_e platform, i18n_ucnv_h *converter) +int i18n_ucnv_create_ccsid(int32_t codepage, i18n_ucnv_platform_e platform, i18n_ucnv_h *converter) { retv_if(platform < I18N_UCNV_UNKNOWN || platform > I18N_UCNV_IBM, I18N_ERROR_INVALID_PARAMETER); @@ -256,7 +256,7 @@ int i18n_ucnv_get_name(i18n_ucnv_h converter, const char **name) } -int i18n_ucnv_get_CCSID(i18n_ucnv_h converter, int32_t *codepage_number) +int i18n_ucnv_get_ccsid(i18n_ucnv_h converter, int32_t *codepage_number) { retv_if(converter == NULL, I18N_ERROR_INVALID_PARAMETER);