diff options
| author | xHire <xhire@tuxportal.cz> | 2008-10-25 14:11:06 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2008-10-25 14:11:06 +0200 |
| commit | c8a9209d77a896bf49227e5aeccd54e91ccf29cc (patch) | |
| tree | 6b7367406ebbc6ce3ea5e0c8668c75f6fb3f6ae9 /src/client/configFile.h | |
| parent | cb9deba915dd7b114eeb76601eb1c8b07c1ba90f (diff) | |
Changed style of the code to the K&R standard
Diffstat (limited to 'src/client/configFile.h')
| -rw-r--r-- | src/client/configFile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/configFile.h b/src/client/configFile.h index f7f16fc..67dad48 100644 --- a/src/client/configFile.h +++ b/src/client/configFile.h @@ -1,10 +1,10 @@ #ifndef CONFIGFILE_H -#define CONFIGFILE_H +# define CONFIGFILE_H -#include "main.h" -#include "textFile.h" +# include "main.h" +# include "textFile.h" extern int isYesOrNO(char *s); extern char *getYesOrNo(int n); @@ -13,10 +13,10 @@ extern int getValue(char *line, char *env, char *val, int len); extern char *setValue(char *line, char *env, char *val); extern int getValueInConfigFile(textFile_t * textFile, char *env, char *val, - int len); + int len); extern int setValueInConfigFile(textFile_t * textFile, char *env, char *val); extern void loadValueFromConfigFile(textFile_t * textFile, char *env, - char *val, int len, char *butVal); + char *val, int len, char *butVal); #endif |