00001 #include <string.h> 00002 #include <utilstr.h> 00003 00004 00005 /****************************************************************************** 00006 * getconfent - Get the value of an entry in a configuration file 00007 * 00008 * ENT: filename - File name in which to look for entry 00009 * entryname - Entry of which to obtain value 00010 * buf - Buffer to store entry value 00011 * len - Maximum length to write into buffer 00012 * 00013 * RET: error status 00014 */ 00015 00016 char getconfent(char *filename, char *entryname, char *buf, int len) 00017 { 00018 return 0; 00019 }