C51库函数积累:
(1)_chkfloat_:
函数定义:unsigned char _chkfloat_ ( float val); /* number to check */
函数功能:_chkfloat_函数检查浮点数 val 的类型。
返回值:_chkfloat_函数返回浮点数 val 的类型。
/*
本实验测试本征库中的_chkfloat_函数:
函数定义:unsigned char _chkfloat_(float val); 返回值:
Return Value  Meaning
0  Standard floating-point number.
1  Floating-point value 0.
2  +INF (positive overflow).
3  -INF (negative overflow).
4  NaN (Not a Number) error status. 用P1指示返回值
*/
//函数测试:
#include <reg51.h>
#include <intrins.h>
unsigned char f[4]={0xff,0xff,0xff,0xff};
void delay(unsigned int time)
{
while(time--);
}
void main()
{
P2=~_chkfloat_(1.2455);  //Standard floating-point number.
delay(50000);
P2=~_chkfloat_(0.00);  //Floating-point value 0.
delay(50000);
P2=~_chkfloat_(0000000000.0000000000);  //+INF (positive overflow).
delay(50000);
P2=~_chkfloat_(-0000000000.0000000000);  //-INF (negative overflow).
delay(50000);
P2=~_chkfloat_(*((float *)f));  //NaN (Not a Number) error status.
while(1);
}
(2)_crol_:
函数定义:unsigned char _crol_ ( unsigned char c, unsigned char b);  /* character to rotate left */
/* bit positions to rotate */
函数功能:_crol_函数将一个字节c循环左移b位。
返回值:_crol函数返回将c循环左移b位后的值。
/*
本实验测试本征库中的_crol_函数
函数定义:unsigned char _crol_(unsigned char c,unsigned char b);
c51中字符串函数
返回值:_crol_函数返回将c循环左移b位后的值。
用P1指示返回值
*/
//函数测试:
#include <reg51.h>
#include <intrins.h>
void delay(unsigned int time)
{
while(time--);
}
void main()
{
unsigned char i;
i=0;
P2=~0x01;
for(i=0;i<8;i++)
{
P2=_crol_(P2,1);
delay(50000);
}
while(1);
}
(3)_cror_:
函数定义:unsigned char _cror_ ( unsigned char c,  /* character to rotate right */
unsigned char b); /* bit positions to rotate */
函数功能:_cror_函数将一个字节c循环右移b位。
返回值:_cror_函数返回将c循环右移b位后的值。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。