/* * sshchatd_config.h * * load/save the config information * * Author: Dario Rodriguez dario@softhome.net * This program is licensed under the terms of the GNU GPL v2.1+ */ typedef struct cconfig { int sizeusers; int numusers; char **users; } cconfig; cconfig *cconfig_init(void); void cconfig_free(cconfig *conf);