我使用libconfig.h
從配置文件中讀取參數,但是我在打印函數內部/外部的值時遇到問題。使用libconfig.h字符串和字符集的問題
example.h文件
int get_config();
example.c
#include <stdio.h>
#include <stdlib.h>
#include <libconfig.h>
#include "example.h"
typedef struct Conf{
int myInt;
const char *myString;
}Conf;
#define CONFIGFILE "./my.conf"
Conf *config;
int get_config(){
config_t cfg;
config_init(&cfg);
if (!config_read_file(&cfg, CONFIGFILE)) {
fprintf(stderr, "%s:%d - %s\n",
config_error_file(&cfg),
config_error_line(&cfg),
config_error_text(&cfg));
config_destroy(&cfg);
return(EXIT_FAILURE);
}
if(config_lookup_int(&cfg,"myInt", &config->myInt)){
printf("myInt = %d\n", config->myInt);
}
if(config_lookup_string(&cfg,"myString", &config->myString)){
printf("myString = %s\n", config->myString);
}
config_destroy(&cfg);
return 0;
}
int main(){
config = (Conf*) malloc(sizeof(Conf));
if(get_config() == EXIT_FAILURE){
return 0;
}
get_config();
printf("myInt = %d\n",config->myInt);
printf("myString = %s\n",config->myString);
return 0;
}
的myInt
值印刷內部/外部get_config()
是相同的。對於myString
,致電main()
返回虛假字符,與之前打印的字符不同。
怎麼了?
[在C中,你不應該使用'malloc'結果。](http://stackoverflow.com/questions/605845/do-i-cast-the-result-of-malloc) – 2014-10-16 10:22:00