Ignore:
Timestamp:
Apr 3, 2001, 8:28:08 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/unicode.h

    r5456 r5459  
    6464extern int utf8_mbstowcs( int flags, const char *src, int srclen, WCHAR *dst, int dstlen );
    6565
     66extern WCHAR WINAPI tolowerW( WCHAR ch );
     67extern WCHAR WINAPI toupperW( WCHAR ch );
     68
    6669static inline int is_dbcs_leadbyte( const union cptable *table, unsigned char ch )
    6770{
    6871    return (table->info.char_size == 2) && (table->dbcs.cp2uni_leadbytes[ch]);
    69 }
    70 
    71 static inline WCHAR tolowerW( WCHAR ch )
    72 {
    73     extern const WCHAR casemap_lower[];
    74     return ch + casemap_lower[casemap_lower[ch >> 8] + (ch & 0xff)];
    75 }
    76 
    77 static inline WCHAR toupperW( WCHAR ch )
    78 {
    79     extern const WCHAR casemap_upper[];
    80     return ch + casemap_upper[casemap_upper[ch >> 8] + (ch & 0xff)];
    8172}
    8273
     
    194185extern WCHAR *strstrW( const WCHAR *str, const WCHAR *sub );
    195186
     187
    196188#endif  /* __WINE_UNICODE_H */
Note: See TracChangeset for help on using the changeset viewer.