* @brief Handle to struct representing a range of text containing a specific field.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*/
-typedef i18n_ufield_position_s *18n_ufield_position_h;
+typedef i18n_ufield_position_s *i18n_ufield_position_h;
/**
* @brief Enumeration for the possible date/time format styles.
// compares and sorts in ascending order
if (ret == I18N_ERROR_NONE) {
- i18n_ucollator_set_strength( coll, I18N_UCOLLATOR_TERTIARY );
+ i18n_ucollator_set_strength(coll, I18N_UCOLLATOR_TERTIARY);
for (i = 0; i < 2; i++) {
for (j = 0; j < 2 - i; j++) {
i18n_ustring_copy_ua(buf_01, src[j]);
i18n_ucollator_destroy( coll ); // deallocate memory for collator
for (i = 0; i < sizeof(src) / sizeof(src[0]); i++) {
- dlog_print(DLOG_INFO, LOG_TAG, "%s\n", src[i] );
+ dlog_print(DLOG_INFO, LOG_TAG, "%s\n", src[i]);
} // ariplane banana cat
* @endcode
*/
} // cat banana airplane
// creates a collator
- ret = i18n_ucollator_create( "en_US", &coll );
+ ret = i18n_ucollator_create("en_US", &coll);
// compares and sorts in ascending order
if (ret == I18N_ERROR_NONE) {