├── .gitignore ├── .gitmodules ├── .travis.yml ├── README.md └── libgnurx-2.5 ├── COPYING.LIB ├── Makefile ├── README ├── README.md ├── regcomp.c ├── regex.c ├── regex.h ├── regex_internal.c ├── regex_internal.h └── regexec.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/README.md -------------------------------------------------------------------------------- /libgnurx-2.5/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/COPYING.LIB -------------------------------------------------------------------------------- /libgnurx-2.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/Makefile -------------------------------------------------------------------------------- /libgnurx-2.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/README -------------------------------------------------------------------------------- /libgnurx-2.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/README.md -------------------------------------------------------------------------------- /libgnurx-2.5/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regcomp.c -------------------------------------------------------------------------------- /libgnurx-2.5/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regex.c -------------------------------------------------------------------------------- /libgnurx-2.5/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regex.h -------------------------------------------------------------------------------- /libgnurx-2.5/regex_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regex_internal.c -------------------------------------------------------------------------------- /libgnurx-2.5/regex_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regex_internal.h -------------------------------------------------------------------------------- /libgnurx-2.5/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nscaife/file-windows/HEAD/libgnurx-2.5/regexec.c --------------------------------------------------------------------------------