FreeBASIC  0.91.0
strw_len.c
Go to the documentation of this file.
1 /* wstring length function */
2 
3 #include "fb.h"
4 
5 FBCALL ssize_t fb_WstrLen( FB_WCHAR *str )
6 {
7  if( str == NULL )
8  return 0;
9 
10  return fb_wstr_Len( str );
11 }