Search Results

5
votes

Linux configuration file libraries

You could try glib's key-value-file-parser …
10
votes

Is there any ordinary reason to use open() instead of fopen()?

It is better to use open() if you are sticking to unix-like systems and you might like to: Have more fine-grained control over unix permission bits on file creation. Use the …