You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "../src/config_parser.h" |
|
#include <stdio.h> |
|
|
|
int main() { |
|
struct utun_config* cfg = parse_config("test_server.conf"); |
|
if (!cfg) { |
|
printf("Failed to parse config\n"); |
|
return 1; |
|
} |
|
|
|
print_config(cfg); |
|
|
|
free_config(cfg); |
|
return 0; |
|
}
|
|
|