- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

33
ifile.h
View File

@ -13,22 +13,21 @@
#define MKIFILE
#include <stdio.h>
typedef struct __IFileE
{
char *name;
char *value;
struct __IFileE *pNext;
} IPair;
IPair *IFReadConfigFile(FILE *fp);
char *IFindOption(IPair *pList,char *name);
typedef struct __IFileE {
char *name;
char *value;
struct __IFileE *pNext;
} IPair;
IPair *IFReadConfigFile(FILE * fp);
char *IFindOption(IPair * pList, char *name);
/* returns a value for a name
*/
IPair *IFAddOption(IPair *pList,char *name, char *value);
IPair *IFSetOption(IPair *pList,char *name, char *value);
int IFSaveOptions(IPair *pList,FILE *fp);
void IFDeleteOptions(IPair *pList);
extern IPair *pSICSOptions;
*/
IPair *IFAddOption(IPair * pList, char *name, char *value);
IPair *IFSetOption(IPair * pList, char *name, char *value);
int IFSaveOptions(IPair * pList, FILE * fp);
void IFDeleteOptions(IPair * pList);
extern IPair *pSICSOptions;
#endif