~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to src/utilfuns/utilconf.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <utilstr.h>
 
2
 
 
3
 
 
4
/******************************************************************************
 
5
 * getconfent - Get the value of an entry in a configuration file
 
6
 *
 
7
 * ENT: filename        - File name in which to look for entry
 
8
 *              entryname       - Entry of which to obtain value
 
9
 *              buf             - Buffer to store entry value
 
10
 *              len             - Maximum length to write into buffer
 
11
 *
 
12
 * RET: error status
 
13
 */
 
14
 
 
15
SWORD_NAMESPACE_START
 
16
 
 
17
char getconfent(char *filename, char *entryname, char *buf, int len)
 
18
{
 
19
        return 0;
 
20
}
 
21
 
 
22
SWORD_NAMESPACE_END