summaryrefslogtreecommitdiff
path: root/src/string_type.h
blob: 4d9a39f3012657b1faa0c5d4cd23f89e0ff294e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* $Id$ */

/** @file string_type.h Types for strings. */

#ifndef STRING_TYPE_H
#define STRING_TYPE_H

/**
 * Valid filter types for IsValidChar.
 */
enum CharSetFilter {
	CS_ALPHANUMERAL,      ///< Both numeric and alphabetic and spaces and stuff
	CS_NUMERAL,           ///< Only numeric ones
	CS_ALPHA,             ///< Only alphabetic values
};

typedef uint32 WChar;

#endif /* STRING_TYPE_H */