FreeBASIC  0.91.0
strw_space.c
Go to the documentation of this file.
1 /* spacew$ function */
2 
3 #include "fb.h"
4 
5 FBCALL FB_WCHAR *fb_WstrSpace( ssize_t chars )
6 {
7  FB_WCHAR *dst;
8 
9  if( chars <= 0 )
10  return NULL;
11 
12  /* alloc temp string */
13  dst = fb_wstr_AllocTemp( chars );
14  if( dst != NULL )
15  {
16  /* fill it */
17  fb_wstr_Fill( dst, 32, chars );
18  }
19 
20  return dst;
21 }