#include #include #include #include #include #include static void preprocess_erase(struct ctx *ctx, size_t start) { assert(ctx->raw[start] == '#'); for (size_t i = start; i < ctx->size; i++) { char cur = ctx->raw[i]; if (cur == '\n' || cur == '\0') break; ctx->raw[i] = ' '; // Spaces get skipped by tokenizer anyways } } void preprocess(struct ctx *ctx) { for (size_t i = 0; i < ctx->size; i++) { const char cur = ctx->raw[i]; ctx->column++; if (cur == '\n') { ctx->line++; ctx->column = 0; continue; } else if (cur == '\0') { break; } else if (cur == '#' && ctx->column == 1) { if (strncmp(ctx->raw + i + 1, "inc ", fmin(4, ctx->size - i)) == 0) { // TODO: Add include features } else if (*(ctx->raw + i + 1) == '#') { // Comment } else { errln(ctx, "Invalid preprocessing directive"); } preprocess_erase(ctx, i); } } ctx->data = ctx->raw; ctx->line = 0; ctx->column = 0; }