Clean up doc.odin

This commit is contained in:
gingerBill
2021-01-02 16:44:32 +00:00
parent 6523aefdcc
commit a6ce417a35

View File

@@ -14,9 +14,9 @@ main :: proc() {
cpp.warn, cpp.err = t.warn, t.err;
preprocessor.init_lookup_tables(cpp);
preprocessor.init_default_macros(cpp);
cpp.include_paths = {"W:/Odin/core/c/frontend/include"};
cpp.include_paths = {"my/path/to/include"};
tok := tokenizer.tokenize_file(t, match_path, 1);
tok := tokenizer.tokenize_file(t, "the/source/file.c", 1);
tok = preprocessor.preprocess(cpp, tok);
if tok != nil {
@@ -26,8 +26,7 @@ main :: proc() {
}
fmt.println("[Done]");
}
*/
}*/
package c_frontend_tokenizer