aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2017-06-22 13:41:22 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2017-06-28 10:27:35 +0200
commite511691315f6704961a0c8e3a9725f1a589a5c11 (patch)
treef0b4034c8e2c9a8d8851580f191f5256b145dfb3 /lib
parentca517e8b320c7a31c3a147fb1212ddb33cabd919 (diff)
Remove unused variables and functions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/libiniparser.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/libiniparser.c b/lib/libiniparser.c
index ba70c08..a6ddcc7 100644
--- a/lib/libiniparser.c
+++ b/lib/libiniparser.c
@@ -389,24 +389,6 @@ int iniparser_find_entry(
/*-------------------------------------------------------------------------*/
/**
- @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_set(dictionary * ini, char * entry, char * val)
-{
- return dictionary_set(ini, strlwc(entry), val) ;
-}
-
-/*-------------------------------------------------------------------------*/
-/**
@brief Delete an entry in a dictionary
@param ini Dictionary to modify
@param entry Entry to delete (entry name)