summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcollin <collin+i@collinmcqueen.com>2021-04-23 16:52:27 -0400
committercollin <collin+i@collinmcqueen.com>2021-04-23 16:52:27 -0400
commita332971362f60ee5b6fa3c108d786eaedfc60890 (patch)
tree0296a92373f9a89ed777a44b61342a3e19cb3adc
parentb3bb29a3ca8f6a5b097499c8f364ba7861cdf0b0 (diff)
downloadsdl_core-fix/ini_updates.tar.gz
check stylefix/ini_updates
-rw-r--r--src/components/config_profile/include/config_profile/ini_file.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/components/config_profile/include/config_profile/ini_file.h b/src/components/config_profile/include/config_profile/ini_file.h
index 71ecb63854..f489872533 100644
--- a/src/components/config_profile/include/config_profile/ini_file.h
+++ b/src/components/config_profile/include/config_profile/ini_file.h
@@ -88,53 +88,53 @@ extern "C" {
/*
* @brief Write usage instructions to the end of the file
* @param
- *
+ *
* \deprecated This method will be removed in the next major release
* See Profile::ParseConfiguration for the new ini parsing code
- *
+ *
* @return NULL if file or desired entry not found, otherwise pointer to fname
*/
DEPRECATED extern char* ini_write_inst(const char* fname, uint8_t flag);
/*
* @brief Read a certain item of the specified chapter of a ini-file
- *
+ *
* \deprecated This method will be removed in the next major release
* See Profile::ParseConfiguration for the new ini parsing code
*
* @return NULL if file or desired entry not found, otherwise pointer to value
*/
DEPRECATED extern char* ini_read_value(const char* fname,
- const char* chapter,
- const char* item,
- char* value);
+ const char* chapter,
+ const char* item,
+ char* value);
/*
* @brief Write a certain item of the specified chapter of a ini-file
- *
+ *
* \deprecated This method will be removed in the next major release
* See Profile::ParseConfiguration for the new ini parsing code
*
* @return NULL if file not found, otherwise pointer to value
*/
DEPRECATED extern char ini_write_value(const char* fname,
- const char* chapter,
- const char* item,
- const char* value,
- uint8_t flag);
+ const char* chapter,
+ const char* item,
+ const char* value,
+ uint8_t flag);
/*
* @brief Parse the given line for the item and returns the value if
* there is one otherwise NULL
- *
+ *
* \deprecated This method will be removed in the next major release
* See Profile::ParseConfiguration for the new ini parsing code
*
* @return NULL if desired entry not found, otherwise pointer to value
*/
DEPRECATED extern Ini_search_id ini_parse_line(const char* line,
- const char* tag,
- char* value);
+ const char* tag,
+ char* value);
#ifdef __cplusplus
}