- 论坛徽章:
- 0
|
<code>;
#define _GNU_SOURCE
#include <stdio.h>;
#include <unistd.h>;
#include <string.h>;
#include <stdlib.h>;
#include <time.h>;
#include <signal.h>;
struct vgetconf {
char *conf_card; /* card */
char *conf_server_domain; /* server domain name */
char *conf_clint_domain; /* client domain name */
char *conf_local_host; /* localhost */
char *conf_remote_host; /* remote host */
char *conf_local_area; /* localarea */
char *conf_remote_area; /* remote area */
};
struct vgetconf *getline_b()
{
struct vgetconf vgetconfs;
FILE * fp;
char * line = NULL;
size_t len = 0;
ssize_t read;
int i;
char *vget[6];
fp = fopen("b.conf", "r" ;
if (fp == NULL)
exit(EXIT_FAILURE);
for(i=0;i<7;i++){
read = getline(&line, &len, fp);
vget=(char *)malloc(strlen(line)+1);
strcpy(vget,line);
}
if (line)
free(line);
vgetconfs.conf_card=vget[0];
vgetconfs.conf_server_domain=vget[1];
vgetconfs.conf_clint_domain=vget[2];
vgetconfs.conf_local_host=vget[3];
vgetconfs.conf_remote_host=vget[4];
vgetconfs.conf_local_area=vget[5];
vgetconfs.conf_remote_area=vget[6];
return &
}
main()
{
struct vgetconf *vgetconfm;
vgetconfm=getline_b();
printf("%s \n", vgetconfm->;conf_card);
printf("%s \n", vgetconfm->;conf_server_domain);
printf("%s \n", vgetconfm->;conf_clint_domain);
printf("%s \n", vgetconfm->;conf_local_host);
printf("%s \n", vgetconfm->;conf_remote_host);
printf("%s \n", vgetconfm->;conf_local_area);
printf("%s \n", vgetconfm->;conf_remote_area);
return EXIT_SUCCESS;
}
</code>;
b.conf内容如下:
eth0
main.a.com
client.a.com
10.20.40.243
10.20.6.35
10.20.40.0
10.20.6.0
编译信息:
gcc -o testfile testprintfi.c
testprintfi.c: In function `getline_b':
testprintfi.c:50: warning: function returns address of local variable
testprintfi.c:69:2: warning: no newline at end of file
执行后,显示到终端是三行乱码
è™`üÿÃ 4
à'Bp]@°Â
xéÿ¿WB |
|