You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
525 B
19 lines
525 B
//
|
|
// cuistr.h
|
|
// = handling string functions in CUILIB =
|
|
//
|
|
|
|
#ifndef CUISTR_H
|
|
#define CUISTR_H
|
|
|
|
extern int CUIStrCmpW( const WCHAR *pwch1, const WCHAR *pwch2 );
|
|
extern WCHAR *CUIStrCpyW( WCHAR *pwchDst, const WCHAR *pwchSrc );
|
|
extern int CUIStrLenW( const WCHAR *pwch );
|
|
|
|
|
|
#define StrCmpW( pwch1, pwch2 ) CUIStrCmpW( (pwch1), (pwch2) )
|
|
#define StrCpyW( pwchDst, pwchSrc ) CUIStrCpyW( (pwchDst), (pwchSrc) )
|
|
#define StrLenW( pwch ) CUIStrLenW( (pwch) )
|
|
|
|
#endif /* CUISTR_H */
|
|
|