-1

所以我不确定为什么这不起作用,我正在创建一个新表并将其设置为变量“表”我做错了什么吗?

这是我尝试运行它时遇到的错误:

src/simpleshell.c:19:3: error: 'table' undeclared (第一次在这个函数中使用)

src/simpleshell.c:19:3:注意:每个未声明的标识符对于它出现的每个函数只报告一次

我的代码如下:

#include "parser.h"
#include "hash_table.h"
#include "variables.h"
#include "shell.h"
#include <stdio.h>

int main(void) {
  char input[MAXINPUTLINE];
  table = Table_create();
  signal_c_init();
  
  printf("\nhlsh$ ");

  while(fgets(input, sizeof(input), stdin)){
     stripcrlf(input);
     parse(input);
     printf("\nhlsh$ ");
  }
  Table_free(table);
  return 0;
}

然后这是我在 hash_table 文件中创建一个表:

struct Table *Table_create(void){
    struct Table *t;
    t = (struct Table*)calloc(1, sizeof(struct Table));
    return t;
}

从 hash_table.c:

#include "hash_table.h"
#include "parser.h"
#include "shell.h"
#include "variables.h"
#include <stdio.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <pwd.h>
#include <fcntl.h>
#include <limits.h>
#include <signal.h>

struct Table *table;

unsigned int hash(const char *x){
    int i;
    unsigned int h = 0U;
    for (i=0; x[i]!='\0'; i++){
        h = h * 65599 + (unsigned char)x[i];
    }
    return h % 1024;
}
4

1 回答 1

3

你应该声明table的类型。那是,

struct Table *table = Table_create();
于 2013-11-13T02:25:38.780 回答