Browse Subversion Repository
Contents of /jpinput/UtfString.h
Parent Directory
| Revision Log
Revision 245 -
( show annotations)
( download)
( as text)
Mon Feb 18 14:44:46 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-chdr
File size: 601 byte(s)
now debugging rangesCtrl
| 1 |
#ifndef UTF_STRING_H |
| 2 |
#define UTF_STRING_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief UTF8 ĚśńěÖ |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <SDL.h> |
| 14 |
#include <stddef.h> |
| 15 |
#include <vector> |
| 16 |
|
| 17 |
|
| 18 |
namespace beego { |
| 19 |
extern size_t ustrlen(const Uint16* str); |
| 20 |
extern int ustrncmp(const Uint16* a, const Uint16* b, size_t n); |
| 21 |
extern void ustrcat(std::vector<Uint16>& dest, const char* src); |
| 22 |
extern void ustrcat(std::vector<Uint16>& dest, const Uint16* src); |
| 23 |
extern bool isHiragana(const Uint16 wch); |
| 24 |
extern void uni2char(std::vector<char>& text, std::vector<Uint16>& utext); |
| 25 |
}; |
| 26 |
|
| 27 |
#endif /* !UTF_STRING_H */ |
|