├── README.md ├── benchmark ├── Benchmark.hsc ├── algorithms │ ├── naive_strstr.c │ ├── naive_strstr.h │ ├── volnitsky_strstr.c │ └── volnitsky_strstr.h ├── benchmark.cabal └── de_bello_gallico.txt ├── fast_strstr.c └── fast_strstr.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/Benchmark.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/Benchmark.hsc -------------------------------------------------------------------------------- /benchmark/algorithms/naive_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/algorithms/naive_strstr.c -------------------------------------------------------------------------------- /benchmark/algorithms/naive_strstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/algorithms/naive_strstr.h -------------------------------------------------------------------------------- /benchmark/algorithms/volnitsky_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/algorithms/volnitsky_strstr.c -------------------------------------------------------------------------------- /benchmark/algorithms/volnitsky_strstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/algorithms/volnitsky_strstr.h -------------------------------------------------------------------------------- /benchmark/benchmark.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/benchmark.cabal -------------------------------------------------------------------------------- /benchmark/de_bello_gallico.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/benchmark/de_bello_gallico.txt -------------------------------------------------------------------------------- /fast_strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/fast_strstr.c -------------------------------------------------------------------------------- /fast_strstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelJ/fast_strstr/HEAD/fast_strstr.h --------------------------------------------------------------------------------