2005-06-28 07:04:36 +04:00
|
|
|
/*
|
2008-01-30 10:30:10 +03:00
|
|
|
Copyright (c) 2004-2008 Jay Sorg
|
2005-06-28 07:04:36 +04:00
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
2005-06-28 07:04:36 +04:00
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
in all copies or substantial portions of the Software.
|
2005-06-28 07:04:36 +04:00
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
2005-06-28 07:04:36 +04:00
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
read a config file
|
2005-06-28 07:04:36 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(FILE_H)
|
|
|
|
#define FILE_H
|
|
|
|
|
2006-10-12 08:46:40 +04:00
|
|
|
#include "arch.h"
|
|
|
|
|
2005-11-19 04:37:49 +03:00
|
|
|
int APP_CC
|
2005-06-30 05:01:19 +04:00
|
|
|
file_read_sections(int fd, struct list* names);
|
2005-11-19 04:37:49 +03:00
|
|
|
int APP_CC
|
2007-10-28 08:49:08 +03:00
|
|
|
file_by_name_read_sections(const char* file_name, struct list* names);
|
|
|
|
int APP_CC
|
|
|
|
file_read_section(int fd, const char* section,
|
|
|
|
struct list* names, struct list* values);
|
|
|
|
int APP_CC
|
|
|
|
file_by_name_read_section(const char* file_name, const char* section,
|
|
|
|
struct list* names, struct list* values);
|
2005-06-28 07:04:36 +04:00
|
|
|
|
|
|
|
#endif
|