summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/chardump.h')
-rw-r--r--crawl-ref/source/chardump.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/crawl-ref/source/chardump.h b/crawl-ref/source/chardump.h
new file mode 100644
index 0000000000..22b03ac8d3
--- /dev/null
+++ b/crawl-ref/source/chardump.h
@@ -0,0 +1,28 @@
+/*
+ * File: chardump.cc
+ * Summary: Dumps character info out to the morgue file.
+ * Written by: Linley Henzell
+ *
+ * Change History (most recent first):
+ *
+ * <1> 4/20/99 JDJ Reformatted, uses string objects, split out
+ * 7 functions from dump_char, dumps artifact info.
+ */
+
+
+#ifndef CHARDUMP_H
+#define CHARDUMP_H
+
+#include <string>
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr - ouch
+ * *********************************************************************** */
+bool dump_char( const char fname[30], bool show_prices );
+
+std::string munge_description(const std::string &inStr);
+
+const char *hunger_level(void);
+
+#endif