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); |