错误C3861:' ls_file':未找到标识符

时间:2016-10-22 16:33:36

标签: c

我正在学习编写自己的虚拟文件系统,但除了程序中的逻辑错误之外,我还检查了程序中的所有声明,但无法弄清楚。

辅助功能

#include "header.h"

UFDT UFDTArr[50];
SUPERBLOCK SUPERBLOCKobj;
PINODE head=NULL;

void man(char *name)
{
    if(name==NULL) return;

    if(_stricmp(name,"ls")==0)
    {
        printf("Description : Used to list all information of file\n");
        printf("Usage : ls\n");
    }
    else 
    {
        printf("ERROR : No manual entry available\n");
    }
}
    void DisplayHelp()
{
    printf("ls : To List Out all files \n");
    printf("clear : To Clear consol\n");
}

void CreateDILB()
{
    PINODE newn=NULL;
    PINODE temp=head;
    int i=1;

    while(i<=MAXINODE)
    {
        newn=(PINODE)malloc(sizeof(INODE));
        newn->LinkCount=newn->ReferenceCount=0;
        newn->FileType=newn->FileSize=0;
        newn->Buffer=NULL;
        newn->next=NULL;
        newn->InodeNumber=i;

        if(temp==NULL)
        {
            head=newn;
            temp=head;
        }
        else
        {
            temp->next=newn;
            temp=temp->next;
        }
        i++;
    }

}

void InitialiseSuperBlock()
{
    int i=0;
    while(i<50)
    {
        UFDTArr[i].ptrfiletable=NULL;
        i++;
    }

    SUPERBLOCKobj.TotalInodes=MAXINODE;
    SUPERBLOCKobj.FreeInode=MAXINODE;
}
void ls_file()
{
    PINODE temp=head;

    if(SUPERBLOCKobj.FreeInode== MAXINODE)
    {
        printf("Error : There are no files ");
        return;
    }
    printf("\n File Name\tInode Number\tFile Size\tLink count\n");
    printf("------------------------------------------------------------");

    while(temp!=NULL)
    {
        if(temp->FileType!=0)
        {
            printf("%s\t\t%d\t\t%d\t\t%d\n");
        }
        temp=temp->next;
    }
    printf("------------------------------------------------------------");
}

主档

#include "header.h"

int main()
{
    char *ptr=NULL;
    int ret=0,fd=0,count=0;
    char command[4][80],str[80],arr[1024];

    InitialiseSuperBlock();
    CreateDILB();

    while(1)
    {
        fflush(stdin);
        strcpy_s(str,"");

        printf("Sachin VFS :> ");
        fgets(str,80,stdin);

        count=sscanf(str,"%s%s%s %s",command[0],command[1],command[2],command[3]);

        if(count==1)
        {
            if(_stricmp(command[0],"ls")==0)
            {
                ls_file();
            }

            else if(_stricmp(command[0],"clear")==0)
            {
                system("cls");
                continue;
            }
        else
        {
            printf("\n ERROR : Command not found!!! \n");
            continue;
        }

    }
    }
    return 0;
}

头文件

#define _CRT_SECURE_NO_WARNINGS
#define MAXINODE 50
#define READ 1
#define WRITE 2
#define MAXFILESIZE 1024
#define REGULAR 1
#define SPECIAL 2
#define START 0
#define CURRENT 1
#define END 2

#include<iostream>
#include <stdlib.h>
#include<string.h>
#include<io.h>

typedef struct superblock
{
    int TotalInodes;
    int FreeInode;

}SUPERBLOCK,*PSUPERBLOCK;

typedef struct inode
{
    char FileName[50];
    int InodeNumber;
    int FileSize;
    int FileActualSize;
    int FileType;
    char *Buffer;
    int LinkCount;
    int ReferenceCount;
    int permission;
    struct inode *next;

}INODE,*PINODE,**PPINODE;

typedef struct filetable
{
    int readoffset;
    int writeoffset;
    int count;
    int mode;
    PINODE ptrinode;

}FILETABLE,*PFILETABLE;

typedef struct ufdt
{
    PFILETABLE ptrfiletable;

}UFDT;

我得到的这个问题的一个解决方案是声明main主文件中的所有函数使编译器识别函数但我仍然无法弄清楚为什么当我声明它们时它无法识别相同的函数其他档案?

默认函数的工作方式与system("cls");类似,但我的功能不起作用

有谁可以帮我理解这个错误的原因和可能的解决方案?

P.S.-我已经粘贴了我的代码的一小部分实际代码太长而无法发布,如果有人希望我发布它我将在评论部分

1 个答案:

答案 0 :(得分:0)

简而言之 - 您应在ls_file()

中声明header.h
void ls_file();

这是将一些对象/函数导出到定义它们的文件之外的常用技术。两者都是&#34;实施&#34;和&#34;客户&#34; *.c个文件必须包含该标头。前者 - 为了保证实际定义和公开可见声明的一致性,后者 - 为客户端代码提供适当和明确的声明。

  

......仍然无法弄清楚为什么它不能识别出同样的东西   当我在其他文件中声明它们时会起作用吗?

通常编译器在引用函数/全局变量之前应该看到函数/全局变量的声明或定义。这是因为在编译过程中,翻译器只能使用一个.c源,并且对其他源文件及其内容一无所知。

P.S This answer可能会启发你一点。