コード例 #1
0
ファイル: slong2fs.c プロジェクト: KnightOS/libc
/* convert signed long to float */
float
__slong2fs (signed long sl)
{
  if (sl < 0) 
    return -__ulong2fs (-sl);
  else 
    return __ulong2fs (sl);
}
コード例 #2
0
ファイル: _uchar2fs.c プロジェクト: FurCode/gbdk-darwin
/* convert unsigned char to float */
float __uchar2fs (unsigned char uc) {
  unsigned long ul=uc;
  return __ulong2fs(ul);
}
コード例 #3
0
ファイル: _uchar2fs.c プロジェクト: TronicLabs/sdcc
/* convert unsigned char to float */
float __uchar2fs (unsigned char uc) {
  return __ulong2fs(uc);
}