免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 918 | 回复: 3
打印 上一主题 下一主题

这是怎么回事啊??? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-03-12 01:30 |只看该作者 |倒序浏览
#include <sys/types.h>;
#include <sys/stat.h>;
#include <unistd.h>;
#include <fcntl.h>;
#include <stdio.h>;
#include <errno.h>;
#include <string.h>;
#define ARGUC 8

size_t readfile_aline(int fd,char buf[],const size_t charlen);
int getIcpInfo(char icp[][],const int count,char *buf);
/*typedef struct icp_info
{
        char billkind[4];
        char c_icpid[6];
        char c_operateid[9];
        char vc_name[65];
}icpinfo;*/
int main(int argc,char *argv[])
{
        int fd,rec_count,i;
        /*size_t count;*/
        char icpinfo[ARGUC][65];
        char buf[512];
        if (argc!=2)
        {
                printf("parameter error!\n";
                return -1;
        }
        if((fd=open(argv[1],O_RDONLY))==-1)
        {
                printf("Open file Error\n Error No=%d\n",errno);
                return -1;
        }
    while((long)readfile_aline(fd,buf,sizeof(buf))>;0L)
        {
                printf("the buf is:%s\n",buf);
                if(getIcpInfo(icpinfo,ARGUC,buf)!=-1)
                                /*split the icpinfo string read from the datafile*/
                            {
                                        if(strcmp(icpinfo[0],"gaa"==0)
                                                rec_count=8;
                                        else if(strcmp(icpinfo[0],"gic"==0)
                                                rec_count=7;
                                        else
                                                continue;
                                        for(i=0;i<rec_count;i++)
                                                printf("record #%i is:%s\n",icpinfo);
                                }
        }
   close(fd);
}

此处省略函数readfile_aline的实现;
int getIcpInfo(char icp[][],const int count,char *buf)
{
        char *pdest;
        int result,idx=0,i;
        char c='|';


        while((pdest=strchr(buf,c))!=NULL)
        {
                result=pdest-buf;
            if(idx<=count)
                {
                        for(i=0;i<result;i++)
                           strncpy(icp[idx],buf,result);
                }
                else
                        return -1;
                idx++;
                buf=buf+result+1;
        }
    if(idx<=count)
                {
                    i=0;  
                    while(*(buf+i))
                        {
                            strcpy(icp[idx],buf);
                            i++;
                        }
                }
        else
                return -1;
        return 0;/* no error!*/
}

编译信息:
fileread.c: In function `getIcpInfo':
fileread.c:112: arithmetic on pointer to an incomplete type
fileread.c:124: arithmetic on pointer to an incomplete type
调试运行信息:
Program terminated with signal SIGSEGV, Segmentation fault.

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2004-03-12 09:32 |只看该作者

这是怎么回事啊???

建议你用code功能把代码编辑一下,
这样才有人帮你看。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2004-03-12 09:37 |只看该作者

这是怎么回事啊???

int getIcpInfo(char icp[][],const int count,char *buf)
改成
int getIcpInfo(char icp[][65],const int count,char *buf)

论坛徽章:
0
4 [报告]
发表于 2004-03-12 21:23 |只看该作者

这是怎么回事啊???

多谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP