Skip to content
Snippets Groups Projects
Commit a89b0225 authored by rswindell's avatar rswindell
Browse files

Created functions: iniOpenFile() and iniCloseFile(), for if/when the .ini

functions are ever DLL-exported.
parent 030d5c62
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@
#if !defined(NO_SOCKET_SUPPORT)
#include "sockwrap.h" /* inet_addr */
#endif
#include "dirwrap.h" /* fexist */
#include "filewrap.h" /* chsize */
#include "ini_file.h"
......@@ -974,6 +975,21 @@ ulong iniGetBitField(str_list_t* list, const char* section, const char* key,
return(parseBitField(value,bitdesc));
}
FILE* iniOpenFile(const char* fname)
{
char* mode="r+";
if(!fexist(fname))
mode="w+";
return(fopen(fname,mode));
}
BOOL iniCloseFile(FILE* fp)
{
return(fclose(fp)==0);
}
str_list_t iniReadFile(FILE* fp)
{
size_t i;
......
......@@ -96,8 +96,10 @@ void* iniFreeNamedStringList(named_string_t** list);
/* File I/O Functions */
FILE* iniOpenFile(const char* fname);
str_list_t iniReadFile(FILE*);
BOOL iniWriteFile(FILE*, const str_list_t);
BOOL iniCloseFile(FILE*);
/* StringList functions */
str_list_t iniGetSectionList(str_list_t* list, const char* prefix);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment