FreeBASIC  0.91.0
strw_oct.c
Go to the documentation of this file.
1 /* woct$ routines */
2 
3 #include "fb.h"
4 
5 FBCALL FB_WCHAR *fb_WstrOct_b ( unsigned char num )
6 {
7  return fb_WstrOctEx_l( num, 0 );
8 }
9 
10 FBCALL FB_WCHAR *fb_WstrOct_s ( unsigned short num )
11 {
12  return fb_WstrOctEx_l( num, 0 );
13 }
14 
15 FBCALL FB_WCHAR *fb_WstrOct_i ( unsigned int num )
16 {
17  return fb_WstrOctEx_l( num, 0 );
18 }
19 
20 FBCALL FB_WCHAR *fb_WstrOctEx_b ( unsigned char num, int digits )
21 {
22  return fb_WstrOctEx_l( num, digits );
23 }
24 
25 FBCALL FB_WCHAR *fb_WstrOctEx_s ( unsigned short num, int digits )
26 {
27  return fb_WstrOctEx_l( num, digits );
28 }
29 
30 FBCALL FB_WCHAR *fb_WstrOctEx_i ( unsigned int num, int digits )
31 {
32  return fb_WstrOctEx_l( num, digits );
33 }