summaryrefslogtreecommitdiff
path: root/src/client/config.h
diff options
context:
space:
mode:
authorMichal Zima <xhire@tuxportal.cz>2009-08-23 23:39:20 +0200
committerMichal Zima <xhire@tuxportal.cz>2009-08-23 23:39:20 +0200
commit057c2048fd32f5a627778b08325af99c3b4c0c0d (patch)
tree90af2b17dd63252ec3936a75cb6d3d38e7073f4c /src/client/config.h
parentbbaa9193bc5c6c691402df7efcb9f18dae59d64f (diff)
Modification of code according to the code style
Diffstat (limited to 'src/client/config.h')
-rw-r--r--src/client/config.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/config.h b/src/client/config.h
index ae84a76..46e0da5 100644
--- a/src/client/config.h
+++ b/src/client/config.h
@@ -28,16 +28,15 @@
#define CFG_NET_IP 21
#define CFG_NET_PORT 22
-#define CONFIG_LIST_COUNT 22
+#define CONFIG_LIST_COUNT 22
extern int config_init();
extern void config_load();
extern void config_save();
extern int config_get_int_value(int key);
-extern char* config_get_str_value(int key);
+extern char *config_get_str_value(int key);
extern void config_set_int_value(int key, int n);
extern void config_set_str_value(int key, char *str);
extern int config_quit();
#endif /* CONFIG_H */
-