summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2015-10-21 14:23:26 +0800
committerTing-Wei Lan <lantw44@gmail.com>2015-10-21 14:23:26 +0800
commite29e9d49f18a5b794cb9e3ae60d8abd819140741 (patch)
tree06e4d4ae267fe039a7fb15c1cd2712fa6a425c66
parent7ff0d66b8aa66652ee308e847643fe08c4f7d697 (diff)
downloadcompiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar.gz
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar.bz2
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar.lz
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar.xz
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.tar.zst
compiler2015-e29e9d49f18a5b794cb9e3ae60d8abd819140741.zip
Replace all tabs with spaces in symbol-table.h
-rw-r--r--symbol-table.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/symbol-table.h b/symbol-table.h
index fa94c8e..3b5983e 100644
--- a/symbol-table.h
+++ b/symbol-table.h
@@ -1,9 +1,9 @@
struct symtab {
- char lexeme[256];
- struct symtab *front;
- struct symtab *back;
- int line;
- int counter;
+ char lexeme[256];
+ struct symtab *front;
+ struct symtab *back;
+ int line;
+ int counter;
};
typedef struct symtab symtab;