diff options
author | jk7744.park <jk7744.park@samsung.com> | 2015-10-24 16:03:25 +0900 |
---|---|---|
committer | jk7744.park <jk7744.park@samsung.com> | 2015-10-24 16:03:25 +0900 |
commit | 29fbfaf7e402c00837b491dcd6ac76ba2c7f31e3 (patch) | |
tree | a79b4c9e8246be9a28f6be9a90844bde20bc30fc /packaging/iniparser_getstr_add.patch | |
parent | 3a29fc23e7ceace9a3f29a5fe0f841c584ffc772 (diff) | |
download | iniparser-9a7f6e3a6f264ff4c2d614619119768c9b8f7d6b.tar.gz iniparser-9a7f6e3a6f264ff4c2d614619119768c9b8f7d6b.tar.bz2 iniparser-9a7f6e3a6f264ff4c2d614619119768c9b8f7d6b.zip |
tizen 2.4 releasetizen_2.4_mobile_releasesubmit/tizen_2.4/20151028.063038accepted/tizen/2.4/mobile/20151029.040220tizen_2.4accepted/tizen_2.4_mobile
Diffstat (limited to 'packaging/iniparser_getstr_add.patch')
-rw-r--r-- | packaging/iniparser_getstr_add.patch | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/packaging/iniparser_getstr_add.patch b/packaging/iniparser_getstr_add.patch new file mode 100644 index 0000000..22b76b9 --- /dev/null +++ b/packaging/iniparser_getstr_add.patch @@ -0,0 +1,117 @@ +Binary files iniparser/.git/index and iniparser_3.1/.git/index differ +Only in iniparser_3.1/.git/objects/37: 10990f7726991967df604a6c635eb26f0337c6 +Only in iniparser_3.1/.git/objects: 5f +Only in iniparser_3.1/.git/objects/e2: 893750416bbb6c6bd35bd6148e2c89b93580f4 +Only in iniparser_3.1/.git/objects: e8 +Only in iniparser_3.1: iniparser_getstr_add.patch +diff -ru iniparser/src/iniparser.c iniparser_3.1/src/iniparser.c +--- iniparser/src/iniparser.c 2015-02-25 14:37:27.509366130 +0900 ++++ iniparser_3.1/src/iniparser.c 2015-02-25 16:34:03.297365295 +0900 +@@ -344,6 +344,29 @@ + + /*-------------------------------------------------------------------------*/ + /** ++ @brief Get the string associated to a key, return NULL if not found ++ @param d Dictionary to search ++ @param key Key string to look for ++ @return pointer to statically allocated character string, or NULL. ++ ++ This function queries a dictionary for a key. A key as read from an ++ ini file is given as "section:key". If the key cannot be found, ++ NULL is returned. ++ The returned char pointer is pointing to a string allocated in ++ the dictionary, do not free or modify it. ++ ++ This function is only provided for backwards compatibility with ++ previous versions of iniparser. It is recommended to use ++ iniparser_getstring() instead. ++ */ ++/*--------------------------------------------------------------------------*/ ++char * iniparser_getstr(dictionary * d, const char * key) ++{ ++ return iniparser_getstring(d, key, NULL); ++} ++ ++/*-------------------------------------------------------------------------*/ ++/** + @brief Get the string associated to a key + @param d Dictionary to search + @param key Key string to look for +@@ -505,6 +528,25 @@ + + /*-------------------------------------------------------------------------*/ + /** ++ @brief Set an entry in a dictionary. ++ @param ini Dictionary to modify. ++ @param entry Entry to modify (entry name) ++ @param val New value to associate to the entry. ++ @return int 0 if Ok, -1 otherwise. ++ ++ If the given entry can be found in the dictionary, it is modified to ++ contain the provided value. If it cannot be found, -1 is returned. ++ It is Ok to set val to NULL. ++ */ ++/*--------------------------------------------------------------------------*/ ++int iniparser_setstr(dictionary * ini, char * entry, char * val) ++{ ++ return iniparser_set(ini, entry, val); ++} ++ ++ ++/*-------------------------------------------------------------------------*/ ++/** + @brief Set an entry in a dictionary. + @param ini Dictionary to modify. + @param entry Entry to modify (entry name) +diff -ru iniparser/src/iniparser.h iniparser_3.1/src/iniparser.h +--- iniparser/src/iniparser.h 2015-02-25 14:37:27.509366130 +0900 ++++ iniparser_3.1/src/iniparser.h 2015-02-25 16:32:06.201365309 +0900 +@@ -143,6 +143,26 @@ + + /*-------------------------------------------------------------------------*/ + /** ++ @brief Get the string associated to a key, return NULL if not found ++ @param d Dictionary to search ++ @param key Key string to look for ++ @return pointer to statically allocated character string, or NULL. ++ ++ This function queries a dictionary for a key. A key as read from an ++ ini file is given as "section:key". If the key cannot be found, ++ NULL is returned. ++ The returned char pointer is pointing to a string allocated in ++ the dictionary, do not free or modify it. ++ ++ This function is only provided for backwards compatibility with ++ previous versions of iniparser. It is recommended to use ++ iniparser_getstring() instead. ++ */ ++/*--------------------------------------------------------------------------*/ ++char * iniparser_getstr(dictionary * d, const char * key); ++ ++/*-------------------------------------------------------------------------*/ ++/** + @brief Get the string associated to a key + @param d Dictionary to search + @param key Key string to look for +@@ -239,6 +259,21 @@ + + /*-------------------------------------------------------------------------*/ + /** ++ @brief Set an entry in a dictionary. ++ @param ini Dictionary to modify. ++ @param entry Entry to modify (entry name) ++ @param val New value to associate to the entry. ++ @return int 0 if Ok, -1 otherwise. ++ ++ If the given entry can be found in the dictionary, it is modified to ++ contain the provided value. If it cannot be found, -1 is returned. ++ It is Ok to set val to NULL. ++ */ ++/*--------------------------------------------------------------------------*/ ++int iniparser_setstr(dictionary * ini, char * entry, char * val); ++ ++/*-------------------------------------------------------------------------*/ ++/** + @brief Set an entry in a dictionary. + @param ini Dictionary to modify. + @param entry Entry to modify (entry name) |