Browse code

Change sources indentation

Dario Rodriguez authored on 13/01/2016 13:14:33
Showing 1 changed files
... ...
@@ -8,6 +8,7 @@
8 8
  */
9 9
 
10 10
 typedef struct cconfig {
11
+	int sizeusers;
11 12
 	int numusers;
12 13
 	char **users;
13 14
 } cconfig;
Browse code

Initial configuration management for sshchatd

Dario Rodriguez authored on 17/12/2015 21:38:20
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,16 @@
1
+/*
2
+ * sshchatd_config.h
3
+ *
4
+ * load/save the config information
5
+ *
6
+ * Author: Dario Rodriguez dario@softhome.net
7
+ * This program is licensed under the terms of the GNU GPL v2.1+
8
+ */
9
+
10
+typedef struct cconfig {
11
+	int numusers;
12
+	char **users;
13
+} cconfig;
14
+
15
+cconfig *cconfig_init(void);
16
+void cconfig_free(cconfig *conf);