getconf 0.1

getconf is a C program that can retrieve NAME=VALUE pairs from a configuration file.Sample:#include < stdio.h >#include < stdlib.h >#include < string.h >#include "getconf.h"int main( int argc, char *argv[] ){ struct config c; char *vars[MAX_LINES]; ...