#include #include void net_init(void) { printf("net_init()\n"); char* user_str = getenv("LIMOX_USER"); char* pwd_str = getenv("LIMOX_PWD"); printf("Trying to connect as '%s' with '%s'.\n", user_str, pwd_str); } void net_quit(void) { printf("net_quit()\n"); }