Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 5421 |
// |
// |
| 5422 |
#include "uni_combining.map" |
#include "uni_combining.map" |
| 5423 |
|
|
| 5424 |
unsigned short GetPrecomposedChar(int start_index, unsigned short first_code, unsigned short code, |
static unsigned short GetPrecomposedChar(int start_index, unsigned short first_code, unsigned short code, |
| 5425 |
combining_map_t *table, int tmax) |
const combining_map_t *table, int tmax) |
| 5426 |
{ |
{ |
| 5427 |
unsigned short result = 0; |
unsigned short result = 0; |
| 5428 |
int i; |
int i; |
| 5441 |
return (result); |
return (result); |
| 5442 |
} |
} |
| 5443 |
|
|
| 5444 |
int GetIndexOfCombiningFirstCode(unsigned short code, combining_map_t *table, int tmax) |
static int GetIndexOfCombiningFirstCode(unsigned short code, const combining_map_t *table, int tmax) |
| 5445 |
{ |
{ |
| 5446 |
int low, mid, high; |
int low, mid, high; |
| 5447 |
int index = -1; |
int index = -1; |
|
|
Legend:
| Removed from v.7406 |
|
| changed lines |
| |
Added in v.7407 |
|
|
| |