summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@mit.edu>2015-07-03 15:52:18 -0400
committerGravatar Benjamin Barenblat <bbaren@mit.edu>2015-07-03 15:52:18 -0400
commit0bfe054e0e93cf0c0a19f63eb2cfb6b4afd88ef7 (patch)
tree20a54465fd62d3b0e7231b69f55e14eb438d3cca /.gitignore
Initial commit of the regex matcher
Wrap glibc’s regex engine to allow matching and group capture in POSIX extended regular expressions. It might be worth rewriting this in terms of the C++11 regex engine; it’s more featureful and more pleasant to use, although it would require more casting. (C can’t represent the std::regex type, so I’d need to use some void pointers.)
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore50
1 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7cc3631
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,50 @@
+# -*- conf -*-
+
+# Editor backup files
+*~
+\#*
+.\#*
+
+# aclocal
+aclocal.m4
+autom4te.cache/
+
+# libtoolize
+ltmain.sh
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
+
+# autoconf
+configure
+
+# autoheader
+config.h.in
+
+# automake
+Makefile.in
+compile
+config.guess
+config.sub
+depcomp
+install-sh
+missing
+
+# configure
+.deps/
+Makefile
+config.h
+config.log
+config.status
+libtool
+stamp-*
+
+# make
+.dirstamp
+*.la
+*.lo
+*.o
+
+.libs/