getconf är ett C-program som kan hämta NAME = värdepar från en konfigurationsfil.
Prov:
#include
#include
#include
# include "getconf.h"
int main (int argc, char * argv [])
{
struct config c;
char * VARs [MAX_LINES];
char * vals [MAX_LINES];
char * configfile = "getconf_test.conf";
int linjer;
int räkna;
linjer = open_file (configfile);
if (linjer <0)
{
fprintf (stderr, "Kunde inte läsa konfigurationsfil% sn", configfile);
exit (EXIT_FAILURE);
}
get_config (& c);
för (count = 0; räkna
* (VARS + räknas) = (char *) malloc (strlen (c.var [count]));
* (vals + räknas) = (char *) malloc (strlen (c.val [count]));
strcpy (* (VARS + räkna), c.var [count]);
strcpy (* (vals + räkna), c.val [count]);
printf ("Variable:% sttValue:% sn", * (VARS + räkna), * (vals + räkna));
}
/ * Nu sanering * /
för (count = 0; räkna
gratis (VARS [count]);
gratis (vals [count]);
}
återvända 0;
}
Mjukvaruinformation:
Version: 0.1
Ladda upp dagen: 2 Jun 15
Licens: Gratis
Popularitet: 37
Kommentarer hittades inte