diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 8 | ||||
| -rw-r--r-- | README.md | 9 | ||||
| -rw-r--r-- | main.c | 6 |
4 files changed, 23 insertions, 1 deletions
@@ -1 +1,2 @@ TAGS +crep
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ab1f1a9 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +default: + @echo "Check targets" + +crep: + $(CC) main.c -o crep + +clean: + rm crep @@ -1,6 +1,13 @@ # crep - like grep but for code -> Note: you should use ctags or etags. Seriously. This is an experimental thingy. +**What is it?** If grep and etags had a baby. + +Note: you should use ctags or etags. Seriously. This is an experimental thingy. - https://en.wikipedia.org/wiki/Ctags - https://www.emacswiki.org/emacs/TagsFile + +## Additional resources + +- https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm +- https://github.com/tree-sitter/tree-sitter @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("Hi Mark!\n"); + return 0; +} |
