├── CMakeLists.txt ├── README ├── test-uri-parse.c ├── uri-parse-speed.c ├── uri_grammar.rl ├── uri_parser.h └── uri_parser.rl /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/README -------------------------------------------------------------------------------- /test-uri-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/test-uri-parse.c -------------------------------------------------------------------------------- /uri-parse-speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/uri-parse-speed.c -------------------------------------------------------------------------------- /uri_grammar.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/uri_grammar.rl -------------------------------------------------------------------------------- /uri_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/uri_parser.h -------------------------------------------------------------------------------- /uri_parser.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toffaletti/libguri/HEAD/uri_parser.rl --------------------------------------------------------------------------------