summaryrefslogtreecommitdiffstats
path: root/common/ini/ini_parse.h
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2010-07-30 14:05:50 -0400
committerDmitri Pal <dpal@redhat.com>2010-08-10 12:51:32 -0400
commit3f87dcf6c1986e031807ca1afb2cdc3e9e40e1de (patch)
tree1250932c9c6a27c72bce2d468e40292c6e1f0076 /common/ini/ini_parse.h
parenta55980ddf7cb6c8a1252c7d891fe95b6713b2431 (diff)
downloadsssd-3f87dcf6c1986e031807ca1afb2cdc3e9e40e1de.tar.gz
sssd-3f87dcf6c1986e031807ca1afb2cdc3e9e40e1de.tar.xz
sssd-3f87dcf6c1986e031807ca1afb2cdc3e9e40e1de.zip
[INI] Starting to consolidate the new interface in one place
I realized that the new high level interface should be defined in one file instead of being scattered in many headers. I would have to eventuallu eliminate ini_configobj.h too and move everything to the new interface in ini_config.h. This patch renames couple functions to be consistent with the naming convention and removes ini_parse.h header.
Diffstat (limited to 'common/ini/ini_parse.h')
-rw-r--r--common/ini/ini_parse.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/common/ini/ini_parse.h b/common/ini/ini_parse.h
deleted file mode 100644
index 7eb9fdc..0000000
--- a/common/ini/ini_parse.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- INI LIBRARY
-
- Header file for the internal parsing functions.
-
- Copyright (C) Dmitri Pal <dpal@redhat.com> 2010
-
- INI Library is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- INI Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with INI Library. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef INI_PARSE_H
-#define INI_PARSE_H
-
-#include <stdio.h>
-#include "collection.h"
-#include "ini_configobj.h"
-
-/* Internal function to read line from INI file */
-int read_line(FILE *file,
- char *buf,
- int read_size,
- char **key,
- char **value,
- int *length,
- int *ext_error);
-
-/*************************************************************************/
-/* THIS INTERFACE WILL CHANGE WHEN THE FILE CONTEXT OBJECT IS INTRODUCED */
-/*************************************************************************/
-/* NOTE: Consider moving the boundary into the config object rather than
- * have it as a part of the parser - TBD.
- */
-
-/* Parse a configration file */
-int ini_parse_config(FILE *file,
- const char *config_filename,
- struct configobj *ini_config,
- int error_level,
- struct collection_item **error_list,
- uint32_t boundary);
-
-#endif