Version: 0.3.0

* Preliminary autoconf support
* Switched to getopt()
* New option: -C (demangle C++ names)
* New options: --help, --version
* Display "format" (printf-like) argument types
* Updated manual page
* New option: -e
diff --git a/demangle.h b/demangle.h
new file mode 100644
index 0000000..c0827a9
--- /dev/null
+++ b/demangle.h
@@ -0,0 +1,11 @@
+extern char * cplus_demangle (const char *mangled, int options);
+
+char * my_demangle(char * function_name);
+
+/* Options passed to cplus_demangle (in 2nd parameter). */
+
+#define DMGL_NO_OPTS    0               /* For readability... */
+#define DMGL_PARAMS     (1 << 0)        /* Include function args */
+#define DMGL_ANSI       (1 << 1)        /* Include const, volatile, etc */
+#define DMGL_JAVA       (1 << 2)        /* Demangle as Java rather than C++. */
+