summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewchar.h
blob: 96412480ecc6021ca39ab81831393c556b1e848c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef VIEWCHAR_H
#define VIEWCHAR_H

void init_char_table(char_set_type set);

dungeon_char_type get_feature_dchar( dungeon_feature_type feat );
unsigned dchar_glyph(dungeon_char_type dchar);

std::string stringize_glyph(unsigned glyph);
int multibyte_strlen(const std::string &s);

#endif