blob: 5a32ca00c54376be5d2954c3c37aefbf53183aac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
*/
char getconfent(char *filename, char *entryname, char *buf, int len)
{
return 0;
}
|