aboutsummaryrefslogblamecommitdiffstats
path: root/src/utilfuns/utilconf.cpp
blob: 7b38937e93173a86b5687a004c4f249b80070a5c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                               

                     



                                                                    

                   
#include <string.h>
#include <utilstr.h>


/******************************************************************************
 * getconfent - Get the value of an entry in a configuration file
 *
 * ENT:	filename	- File name in which to look for entry
 *		entryname	- Entry of which to obtain value
 *		buf		- Buffer to store entry value
 *		len		- Maximum length to write into buffer
 *
 * RET:	error status
 */

SWORD_NAMESPACE_START

char getconfent(char *filename, char *entryname, char *buf, int len)
{
	return 0;
}

SWORD_NAMESPACE_END