summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.h
blob: 696b786a51b7b0fe27163a5a163d9abae13d97e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 *  File:       chardump.cc
 *  Summary:    Dumps character info out to the morgue file.
 *  Written by: Linley Henzell
 *
 *  Modified for Crawl Reference by $Author$ on $Date$
 *
 *  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>

bool dump_char(const std::string &fname, 
               bool show_prices, 
               bool full_id = false);

void resists_screen();
void display_notes();

std::string munge_description(const std::string &inStr);

const char *hunger_level(void);

#endif