Menu

[424828]: / src / rtlib / strw_convto_lng.c  Maximize  Restore  History

Download this file

37 lines (28 with data), 598 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* strw$ routines for longint, ulongint */
#include "fb.h"
/*:::::*/
FBCALL FB_WCHAR *fb_LongintToWstr ( long long num )
{
FB_WCHAR *dst;
/* alloc temp string */
dst = fb_wstr_AllocTemp( sizeof( long long ) * 3 );
if( dst != NULL )
{
/* convert */
FB_WSTR_FROM_INT64( dst, num );
}
return dst;
}
/*:::::*/
FBCALL FB_WCHAR *fb_ULongintToWstr ( unsigned long long num )
{
FB_WCHAR *dst;
/* alloc temp string */
dst = fb_wstr_AllocTemp( sizeof( long long ) * 3 );
if( dst != NULL )
{
/* convert */
FB_WSTR_FROM_UINT64( dst, num );
}
return dst;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.