From 5ff3ac2c4d43475938c4713cd53c7afb128712bd Mon Sep 17 00:00:00 2001 From: SimonFJ20 Date: Wed, 26 Jul 2023 22:34:45 +0200 Subject: [PATCH] init --- .clang-format | 14 ++++++++++++++ .clangd | 19 +++++++++++++++++++ .gitignore | 4 ++++ Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ src/lexer.c | 1 + src/lexer.h | 4 ++++ src/main.c | 24 ++++++++++++++++++++++++ 7 files changed, 107 insertions(+) create mode 100644 .clang-format create mode 100644 .clangd create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 src/lexer.c create mode 100644 src/lexer.h create mode 100644 src/main.c diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..8ae9b75 --- /dev/null +++ b/.clang-format @@ -0,0 +1,14 @@ +BasedOnStyle: WebKit +IndentWidth: 4 +ColumnLimit: 80 +IndentCaseLabels: true +BreakBeforeBraces: Custom +BraceWrapping: + AfterFunction: true + SplitEmptyFunction: false +AlignAfterOpenBracket: BlockIndent +AlignOperands: AlignAfterOperator +BreakBeforeBinaryOperators: true +BinPackArguments: false +BinPackParameters: false + diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..1a6db00 --- /dev/null +++ b/.clangd @@ -0,0 +1,19 @@ +Diagnostics: + ClangTidy: + Add: + - bugprone-* + - clang-analyser-* + - cppcoreguidelines-* + - modernize-* + - readability-* + Remove: + - readability-magic-numbers + CheckOptions: + readability-identifier-naming.IgnoreMainLikeFunctions: true + readability-identifier-length.IgnoredVariableNames: (x|y|z|i|id) + readability-identifier-length.IgnoredParameterNames: (x|y|z|i|id) + + readability-identifier-naming.FunctionCase: lower_case + readability-identifier-naming.ParameterCase: lower_case + readability-identifier-naming.VariableCase: lower_case + UnusedIncludes: Strict diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f934a32 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ + +build/ +compile_flags.txt + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..db25fa4 --- /dev/null +++ b/Makefile @@ -0,0 +1,41 @@ + +PROGRAM = ol +CC = clang + +C_FLAGS = \ + -std=c17 \ + -Wall \ + -Wextra \ + -Wpedantic \ + -Wconversion \ + -Wno-gnu-case-range + +LINKER_FLAGS = \ + -fsanitize=address,undefined + +SOURCE_FOLDER = src +BUILD_FOLDER = build +C_FILES = $(shell find $(SOURCE_FOLDER) -name "*.c") +H_FILES = $(shell find $(SOURCE_FOLDER) -name "*.h") + +C_FLAGS += -I$(SOURCE_FOLDER) + +OBJECT_FILES = $(patsubst $(SOURCE_FOLDER)/%.c, $(BUILD_FOLDER)/%.o, $(C_FILES)) + +all: build_folder $(PROGRAM) compile_flags.txt + +$(PROGRAM): $(OBJECT_FILES) + $(CC) $^ -o $(BUILD_FOLDER)/$@ $(LINKER_FLAGS) + +$(BUILD_FOLDER)/%.o: $(SOURCE_FOLDER)/%.c $(H_FILES) + $(CC) $< -c -o $@ $(C_FLAGS) + +build_folder: + mkdir $(BUILD_FOLDER) -p + +compile_flags.txt: + echo -xc $(CPP_FLAGS) | sed 's/\s\+/\n/g' > compile_flags.txt + +clean: + rm -rf $(BUILD_FOLDER) compile_flags.txt + diff --git a/src/lexer.c b/src/lexer.c new file mode 100644 index 0000000..723ab1d --- /dev/null +++ b/src/lexer.c @@ -0,0 +1 @@ +#include "lexer.h" diff --git a/src/lexer.h b/src/lexer.h new file mode 100644 index 0000000..aec926c --- /dev/null +++ b/src/lexer.h @@ -0,0 +1,4 @@ +#ifndef LEXER_H +#define LEXER_H + +#endif diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..6b5a066 --- /dev/null +++ b/src/main.c @@ -0,0 +1,24 @@ +#include + +int main(int argc, const char** argv) +{ + if (argc < 2) { + printf("usage: ol \n"); + return 1; + } + const char* file_path = argv[1]; + + FILE* file = fopen(file_path, "r"); + if (!file) { + printf("could not open file '%s'\n", file_path); + return 1; + } + + printf("file:\n"); + int read_char = fgetc(file); + while (read_char != EOF) { + fputc(read_char, stdout); + read_char = fgetc(file); + } + fputc('\n', stdout); +}