summaryrefslogtreecommitdiff
path: root/include/contacts_utils.h
diff options
context:
space:
mode:
authorDonghee Ye <donghee.ye@samsung.com>2013-04-11 19:16:15 +0900
committerDonghee Ye <donghee.ye@samsung.com>2013-04-11 19:23:05 +0900
commit0c2ea2b36052817cd57c11e8e3c2cb04a418a2fe (patch)
tree3922bccb64e39086bd022f25cf1b55cacf7c123a /include/contacts_utils.h
parent7f95042423582cb011b22819500d1cacb63fdd1c (diff)
downloadcontacts-service-0c2ea2b36052817cd57c11e8e3c2cb04a418a2fe.tar.gz
contacts-service-0c2ea2b36052817cd57c11e8e3c2cb04a418a2fe.tar.bz2
contacts-service-0c2ea2b36052817cd57c11e8e3c2cb04a418a2fe.zip
Update version 0.9.64
- Fix memory leak - Remove unnecessary noti - Fix bug - wrong reverse display name - Change sorting order : special character will be display first Add reverse_display_name_language - Remove account_id 1/2/3 from persons table - Fix update group without group image change - Fix unlink contact bug Change-Id: I6fcf1ce8ce109330700d05a94c813c8f3b1e3e97
Diffstat (limited to 'include/contacts_utils.h')
-rw-r--r--include/contacts_utils.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/contacts_utils.h b/include/contacts_utils.h
index 8ba7609..9757b20 100644
--- a/include/contacts_utils.h
+++ b/include/contacts_utils.h
@@ -45,29 +45,6 @@ extern "C"
API int contacts_utils_get_index_characters(char **index_string);
/**
- * This function compares compares two strings which is not normalized.
- * If search_str is included in str, this function return #sCONTACTS_ERROR_NONE. \n
- * The behavior of this function cannot fix because of localization.
- * So, The behavior can be different from each other.
- *
- * @param[in] haystack Base string.
- * @param[in] needle searching string
- * @param[out] len substring length
- * @return a position of the beginning of the substring, Negative value(#cts_error) on error or difference.
- * @par example
- * @code
- ret = contacts_strstr(str1, str2, &len);
- if(CONTACTS_ERROR_NONE == ret) {
- snprintf(first, ret+1, "%s", item_data->display);
- snprintf(middle, len+1, "%s", item_data->display + ret);
- printf("%s -> %s, %s, %s", item_data->display, first, middle, item_data->display + ret + len);
- } else
- printf("str1 doesn't has str2");
- * @endcode
- */
-API int contacts_utils_strstr(const char *haystack, const char *needle, int *len);
-
-/**
* @}
*/