blob: be677fc3f482683935604f23245f1ee1c1d629e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdlib.h>
#include <stdio.h>
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");
}
|