/in/foo.c: In function 'addToHash':
/in/foo.c:66:1: error: conversion to non-scalar type requested
66 | p = (nodeH)malloc(sizeof(nodeH));
| ^
/in/foo.c:67:2: error: invalid type argument of '->' (have 'nodeH' {aka 'struct _nodeH'})
67 | p->key = key;
| ^~
/in/foo.c:68:2: error: invalid type argument of '->' (have 'nodeH' {aka 'struct _nodeH'})
68 | p->next = hash[key % MAX_SIZE];
| ^~
/in/foo.c:69:24: error: incompatible types when assigning to type 'nodeH *' {aka 'struct _nodeH *'} from type 'nodeH' {aka 'struct _nodeH'}
69 | hash[key % MAX_SIZE] = p;
| ^
/in/foo.c: In function 'isInHash':
/in/foo.c:72:11: error: invalid initializer
72 | nodeH p = hash[key % MAX_SIZE];
| ^~~~
/in/foo.c:73:9: error: invalid operands to binary != (have 'nodeH' {aka 'struct _nodeH'} and 'void *')
73 | while(p != NULL){
| ^~
/in/foo.c:74:5: error: invalid type argument of '->' (have 'nodeH' {aka 'struct _nodeH'})
74 | if(p->key == key)
| ^~
/in/foo.c:76:6: error: invalid type argument of '->' (have 'nodeH' {aka 'struct _nodeH'})
76 | p = p->next;
| ^~
/in/foo.c: In function 'addToQueue':
/in/foo.c:85:1: error: conversion to non-scalar type requested
85 | tail->next = (nodeQ)malloc(sizeof(nodeQ));
| ^~~~