shithub: scc

ref: 9c8462aa2508d754ae0d9e1dcddcd7883ec0b129
dir: /symbol.h/

View raw version

#pragma once
#ifndef SYMBOL_H
#define SYMBOL_H


struct type;

struct symbol {
	char *str;
	struct type *type;
	struct symbol *next;
};


struct symhash;
extern struct symhash siden, sgoto, sstruct;


#endif