Tagged Questions
0
votes
2answers
652 views
C read value from config file
I need help with reading a port from a config file. The line looks like:
PORT=8888
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
int ...
3
votes
3answers
211 views
Use of xml config files - simple mapping approaches?
I am writing a simple physics engine, and I want to include some form of config files.
As I look at xml, the tree structure makes a lot of sense to me, and looking at libxml it seems to be very easy ...