GameServer
Util.h
[詳解]
1 #ifndef __UTIL_H__
2 #define __UTIL_H__
3 
4 class Util
5 {
6 
7 public:
8 
9  // 全角文字を考慮した文字列の長さを取得.
10  static u32 CalcStringLength(const std::string &Str);
11 
12  // 文字のバイト数を取得.
13  static u32 CalcCharByte(unsigned char Ch);
14 
15 };
16 
17 #endif // #ifndef __UTIL_H__
static u32 CalcCharByte(unsigned char Ch)
Definition: Util.cpp:18
unsigned int u32
Definition: TypeDefs.h:10
Definition: Util.h:4
static u32 CalcStringLength(const std::string &Str)
Definition: Util.cpp:5