FreeBASIC  0.91.0
strw_del.c
Go to the documentation of this file.
1 /* wstring deletion function */
2 
3 #include "fb.h"
4 
6 {
7  if( str == NULL )
8  return;
9 
10  fb_wstr_Del( str );
11 }