亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? libdoc.txt

?? This a FREE tool chain which compiles C codes into 8051 binary code, converts the binary to RTL ROM,
?? TXT
字號:
Not finished - 20 Jan 2002 - checkpoint (Steve Kenton)

This is a sorted (ignoring leading '_') list of the SDCC library.
Sources are in ~sdcc/device/lib/*.c and ~sdcc/device/include/*.h.
Except where denoted with MACRO these are implemented as functions.
Internal function calls are generated by the compiler to implement
IEEE floating point, etc.  They are not normally called directly.

isalnum - character classification - #include <ctype.h> - all ports
	char isalnum (unsigned char c); MACRO
	Return true if c is an ASCII letter or digit
	'a-z','A-Z', '0'-'9' otherwise return false.

isalpha - character classification - #include <ctype.h> - all ports
	char isalpha (unsigned char c); MACRO
	Return true if c is an ASCII letter
	'a-z','A-Z' otherwise return false.

isascii - character classification - #include <ctype.h> - missing
	char isascii (unsigned char c);
	Return true if c is an 7-bit ASCII character
	0x00-0x7F otherwise return false.

iscntrl - character classification - #include <ctype.h> - all ports
	char iscntrl (unsigned char c);
	Return true if c is an ASCII control character
	0x00-0x1F or 0x7F (DEL) otherwise return false.

isdigit - character classification - #include <ctype.h> - all ports
	char isdigit (unsigned char c);
	Return true if c is an ASCII digit '0'-'9'
	otherwise return false.

isgraph - character classification - #include <ctype.h> - all ports
	char isgraph (unsigned char c);
	Return true is c is an ASCII printable graphic
	excluding space 0x21-0x7E otherwise return false.

islower - character classification - #include <ctype.h> - all ports
	char islower (unsigned char c);
	Return true if c is an ASCII lower case letter
	'a'-'z' otherwise return false.

isprint - character classification - #include <ctype.h> - all ports
	char isprint (unsigned char c);
	Return true is c is an ASCII printable graphic
	including space 0x20-0x7E otherwise return false.

ispunct - character classification - #include <ctype.h> - all ports
	char ispunct (unsigned char c);
	Return true if c is ASCII punctuation (isgraph but not isalnum)
	otherwise return false.

isspace - character classification - #include <ctype.h> - all ports
	char isspace (unsigned char c);
	Return true if c is an ASCII white space character
	space, tab, carriage return, newline or vertical tab
	0x09-0x0D, 0x20 otherwise return false.

isupper - character classification - #include <ctype.h> - all ports
	char isupper (unsigned char c);
	Return true if c is an ASCII upper case letter
	'A'-'Z' otherwise return false.

isxdigit - character classification - #include <ctype.h> - all ports
	char isxdigit (unsigned char c);
	Return true if c is an ASCII hexidecimal digit
	'0-9','a-f','A-F' otherwise return false.

toascii - character classification - #include <ctype.h> - all ports
	char toascii(unsigned char c); MACRO
	Convert c from 8-bit value to 7-bit ASCII.

tolower - character classification - #include <ctype.h> - all ports
	char _tolower(unsigned char c); MACRO
	char tolower(unsigned char c); MACRO
	Convert c from upper case to lower case.

toupper - character classification - #include <ctype.h> - all ports
	char _toupper(unsigned char c); MACRO
	char toupper(unsigned char c); MACRO
	Convert c from lower case to upper case.

__uchar2fs - IEEE single precision math - #include <float.h> - ??? ports
	float __uchar2fs (unsigned char uc); INTERNAL
	Convert an unsigned char to float.

__schar2fs - IEEE single precision math - #include <float.h> - ??? ports
	float __schar2fs (signed char sc); INTERNAL
	Convert a signed char to float.

__uint2fs - IEEE single precision math - #include <float.h> - ??? ports
 	float __uint2fs (unsigned int ui); INTERNAL
	Convert an unsigned int to float.

__sint2fs - IEEE single precision math - #include <float.h> - ??? ports
	float __sint2fs (signed int si); INTERNAL
	Convert a signed int to float.

__ulong2fs - IEEE single precision math - #include <float.h> - ??? ports
	float __ulong2fs (unsigned long ul); INTERNAL
	Convert an unsigned log to float.

__slong2fs - IEEE single precision math - #include <float.h> - ??? ports
	float __slong2fs (signed long sl); INTERNAL
	Convert a signed long to float.

__fs2uchar - IEEE single precision math - #include <float.h> - ??? ports
	unsigned char __fs2uchar (float f); INTERNAL
	Convert a float to unsigned char;

__fs2schar - IEEE single precision math - #include <float.h> - ??? ports
	signed char __fs2schar (float f); INTERNAL
	Convert a float to signed char;

__fs2uint - IEEE single precision math - #include <float.h> - ??? ports
	unsigned int __fs2uint (float f); INTERNAL
	Convert a float to unsigned int;

__fs2sint - IEEE single precision math - #include <float.h> - ??? ports
	signed int __fs2sint (float f); INTERNAL
	Convert a float to signed int;

__fs2ulong - IEEE single precision math - #include <float.h> - ??? ports
	unsigned long __fs2ulong (float f); INTERNAL
	Convert a float to unsigned long;

__fs2slong - IEEE single precision math - #include <float.h> - ??? ports
	signed long __fs2slong (float f); INTERNAL
	Convert a float to signed long.

__fsadd - IEEE single precision math - #include <float.h> - ??? ports
	float __fsadd (float a1, float a2); INTERNAL
	Add two floats.

__fssub - IEEE single precision math - #include <float.h> - ??? ports
	float __fssub (float a1, float a2); INTERNAL
	Subtract two floats.

__fsmul - IEEE single precision math - #include <float.h> - ??? ports
	float __fsmul (float a1, float a2); INTERNAL
	Multiply two floats.

__fsdiv - IEEE single precision math - #include <float.h> - ??? ports
	float __fsdiv (float a1, float a2); INTERNAL
	Divide two floats.

__fslt - IEEE single precision math - #include <float.h> - ??? ports
	char __fslt (float a1, float a2); INTERNAL
	Compare two floats lt.

__fseq - IEEE single precision math - #include <float.h> - ??? ports
	char __fseq (float a1, float a2); INTERNAL
	Compare two floats eq.

__fsneq - IEEE single precision math - #include <float.h> - ??? ports
	char __fseq (float a1, float a2); INTERNAL ??? missing in float.h ???
	Compare two floats neq.

__fsgt - IEEE single precision math - #include <float.h> - ??? ports
	char __fsgt (float a1, float a2); INTERNAL ??? typo in float.h ???
	Compare two floats gt.

malloc - memory allocation - #include <malloc.h> - ??? ports
	void *malloc (unsigned int);
	void xdata * malloc (unsigned int );
	Allocate a block of memory from the heap;

free - memory allocation - #include <malloc.h> - ??? ports
	void free (void *p);
	void free (void xdata *  p);
	Return previously allocated memory to the heap.

init_dynamic_memory - memory allocation - #include <malloc.h> - ??? ports
	void init_dynamic_memory (MEMHEADER xdata *  , unsigned int );
	Initialize the memory allocation system.

sincosf - ANSI C math - #include <math.h> - all ports
	float sincosf(const float x, const int iscos); INTERNAL
	Compute the sine or cosine of x.

tancotf - ANSI C math - #include <math.h> - all ports
	float tancotf(const float x, const int iscot); INTERNAL
	Compute the tangent or cotangent of x.

asincosf - ANSI C math - #include <math.h> - all ports
	float asincosf(const float x, const int isacos); INTERNAL
	Compute the arc sine or arc cosine of x.

sincoshf - ANSI C math - #include <math.h> - all ports
	float sincoshf(const float x, const int iscosh); INTERNAL
	Compute the hyperbolic sine or hyperbolic cosine of x.

sinf - ANSI C math - #include <math.h> - all ports
	float sinf (const float x);
	Compute sine of x.

cosf - ANSI C math - #include <math.h> - all ports
	float cosf (const float x);
	Compute cosine of x.

tanf - ANSI C math - #include <math.h> - all ports
	float tanf (const float x);
	Compute tangent of x.

cotf - ANSI C math - #include <math.h> - all ports
	float cotf (const float x);
	Compute cotangent of x.

asinf - ANSI C math - #include <math.h> - all ports
	float asinf (const float x);
	Compute the arc sine of x.

acosf - ANSI C math - #include <math.h> - all ports
	float acosf (const float x);
	Compute the arc cosine of x.

atanf - ANSI C math - #include <math.h> - all ports
	float atanf (const float x);
	Compute the arc tangent of x.

atan2f - ANSI C math - #include <math.h> - all ports
	float atan2f (const float x, const float y); ??? x,y reversed ???
	Compute the arc tangent of (x/y);

sinhf - ANSI C math - #include <math.h> - all ports
	float sinhf (const float x);
	Compute the hyperbolic sine of x.

coshf - ANSI C math - #include <math.h> - all ports
	float coshf (const float x);
	Compute the hyperbolic cosine of x.

tanhf - ANSI C math - #include <math.h> - all ports
	float tanhf (const float x);
	Compute the hyperbolic tangent of x.

expf - ANSI C math - #include <math.h> - all ports
	float expf (const float x);
	Compute e to the x power.

logf - ANSI C math - #include <math.h> - all ports
	float logf (const float x);
	Compute log base e of x.

log10f - ANSI C math - #include <math.h> - all ports
	float log10f (const float x);
	Compute log base 10 of x.

powf - ANSI C math - #include <math.h> - all ports
	float powf (const float x, const float y);
	Compute x to y power.

sqrtf - ANSI C math - #include <math.h> - all ports
	float sqrtf (const float x);
	Compute the square root of x.

fabsf - ANSI C math - #include <math.h> - all ports
	float fabsf (const float x);
	Compute the absolute value of x.

frexpf - ANSI C math - #include <math.h> - all ports
	float frexpf (const float x, int *pw2);
	Split x in to mantissa and exponent parts.

ldexpf - ANSI C math - #include <math.h> - all ports
	float ldexpf (const float x, const int pw2);
	Combine mantissa and exponent parts of a float.

ceilf - ANSI C math - #include <math.h> - all ports
	float ceilf (float x);
	Find the smallest integer not less than x.

floorf - ANSI C math - #include <math.h> - all ports
	float floorf (float x);
	Find the largest integer not more than x.

modff - ANSI C math - #include <math.h> - all ports
	float modff (float x, float * y);
	Split x in to integer and fractional parts.

setjmp - long jump - #include <setjmp.h> - ??? ports
	int setjmp (unsigned char * jmpb);
	Save the return address and sufficient task state
	to allow implementation of co-routines or error
	handlers that unwind the stack using longjmp.
	Returns 0, which is reserved and cannot be used
	by longjmp.

longjmp - long jump - #include <setjmp.h> - ??? ports
	int longjmp (unsigned char * jmpb, int retval);
	Return to the the location and task state previously
	save in the jump buffer.  Any integer number except 0
	may be passed as retval.

stdio.h
/*-------------------------------------------------------------------------
printf_small - standard character I/O - #include <stdio.h> - all ports
	void printf_small (char *,...);

printf - standard character I/O - #include <stdio.h> - all ports
	int printf (const char *,...);

vprintf - standard character I/O - #include <stdio.h> - all ports
	int vprintf (const char *, va_list);

sprintf - standard character I/O - #include <stdio.h> - all ports
	int sprintf (const char *, const char *, ...);

vsprintf - standard character I/O - #include <stdio.h> - all ports
	int vsprintf (const char *, const char *, va_list);

puts - standard character I/O - #include <stdio.h> - all ports
	int puts(const char *);

gets - standard character I/O - #include <stdio.h> - all ports
	char *gets(char *);

getchar - standard character I/O - #include <stdio.h> - all ports
	char getchar(void);

putchar - standard character I/O - #include <stdio.h> - all ports
	void putchar(char);

string.h
/*-------------------------------------------------------------------------
strcpy - string manipulation - #include <string.h> - all ports
	char *strcpy (char * d, char * s);
	Copy the nul terminated source string s to the destination d.

strncpy - string manipulation - #include <string.h> - all ports
	char *strncpy(char * d, char * s, int n);
	Copy the nul terminated source string s to the destination d but
	do not copy more than n characters even if this causes d to not
	be nul terminated.

strcat - string manipulation - #include <string.h> - all ports
	char *strcat (char * front, char * back);
	Copy the nul terminated string back to the end of the nul terminated
	string front, overwriting the nul and creating a concatenation of
	the two with a single trailing nul terminator.

strncat - string manipulation - #include <string.h> - all ports
	char *strncat(char * front, char * back, int n);
	Copy the nul terminated string back to the end of the nul terminated
	string front, overwriting the nul and creating a concatenation of
	the two, but do not copy more than n characters, even if this causes
	the result to no be nul terminated.

strcmp - string manipulation - #include <string.h> - all ports
	int   strcmp (char * asrc, char * adst);
	Compare two nul terminated strings asrc and adst.  Return a value < 0 if asrc
	is less than adst.  Return a value > 0 if asrc is greater than adst.  Otherwise
	return 0.

strncmp - string manipulation - #include <string.h> - all ports
	int   strncmp(char * asrc, char * adst, int n);
	Compare two nul terminated strings asrc and adst but do not check more than n
	characters.  Return a value < 0 if asrc is less than adst.  Return a value > 0
	if asrc is greater than adst. Otherwise return 0.

strchr - string manipulation - #include <string.h> - all ports
	char *strchr (char * string, char ch);
	Return a pointer to the first occurance of the character ch is string
	or a NULL pointer if not found.

strrchr - string manipulation - #include <string.h> - all ports
	char *strrchr(char * string, char ch);
	Return a pointer to the last occurance of the character ch is string
	or a NULL pointer if not found.

strspn - string manipulation - #include <string.h> - all ports
	int   strspn (char *, char *);

strcspn - string manipulation - #include <string.h> - all ports
	int   strcspn(char *, char *);

strpbrk - string manipulation - #include <string.h> - all ports
	char *strpbrk(char *, char *);

strstr - string manipulation - #include <string.h> - all ports
	char *strstr (char *, char *);

strlen - string manipulation - #include <string.h> - all ports
	int   strlen (char *  );

strtok - string manipulation - #include <string.h> - all ports
	char *strtok (char *, char *);

memcpy - string manipulation - #include <string.h> - all ports
	void *memcpy (void *, void *, int );

memcmp - string manipulation - #include <string.h> - all ports
	int   memcmp (void *, void *, int );

memset - string manipulation - #include <string.h> - all ports
	void *memset (void *, unsigned char  , int );

time.h
/*-------------------------------------------------------------------------

mktime - time and date - #include <time.h> - all ports
	time_t mktime(struct tm *timeptr);

asctime - time and date - #include <time.h> - all ports
	char *asctime(struct tm *timeptr);

ctime - time and date - #include <time.h> - all ports
	char *ctime(time_t *timep);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人免费电影| 国产精品免费看片| 欧美亚洲国产一区二区三区va| 国产麻豆午夜三级精品| 久久精品国产成人一区二区三区| 天天射综合影视| 日韩精品欧美精品| 免费观看30秒视频久久| 日本网站在线观看一区二区三区| 调教+趴+乳夹+国产+精品| 香蕉成人伊视频在线观看| 午夜成人免费视频| 日产国产高清一区二区三区| 天天做天天摸天天爽国产一区 | 91精品国产91久久久久久最新毛片 | 国产毛片一区二区| 国产99久久久精品| 不卡的av电影在线观看| 一道本成人在线| 欧美三级电影在线看| 91麻豆精品国产综合久久久久久| 宅男噜噜噜66一区二区66| 精品久久国产老人久久综合| 国产午夜一区二区三区| 国产精品精品国产色婷婷| 亚洲在线观看免费视频| 理论电影国产精品| 大陆成人av片| 欧美色视频在线观看| 日韩精品中文字幕一区二区三区 | 亚洲国产综合在线| 欧美a级理论片| 国产精品系列在线观看| 在线观看日韩国产| 精品久久国产字幕高潮| 亚洲最新视频在线观看| 久久99久久精品欧美| 亚洲gay无套男同| 国产精品中文字幕一区二区三区| 91视频免费播放| 日韩免费观看高清完整版在线观看| 国产午夜精品久久久久久久| 亚洲小少妇裸体bbw| 国产一区二区在线观看视频| 日本高清视频一区二区| 国产欧美日韩卡一| 午夜电影网亚洲视频| a美女胸又www黄视频久久| 欧美一区二区三区四区视频| 国产精品传媒在线| 免费成人av在线播放| 色婷婷精品大视频在线蜜桃视频| 欧美一级欧美三级| 一区二区三区91| 国产一区二区精品在线观看| 欧美亚洲综合网| 国产拍欧美日韩视频二区| 韩国一区二区三区| 91精品国产免费久久综合| 一区二区三区四区国产精品| 成人在线一区二区三区| 精品裸体舞一区二区三区| 日韩精品一二三四| 欧美午夜寂寞影院| 亚洲毛片av在线| 国产成人免费视频精品含羞草妖精 | 日本一区二区视频在线观看| 奇米在线7777在线精品| 欧美性大战xxxxx久久久| 综合亚洲深深色噜噜狠狠网站| 国产一区二区三区国产| 精品国产一区久久| 久久91精品久久久久久秒播| 欧美一区二区三区在线观看| 无吗不卡中文字幕| 欧美高清视频一二三区| 五月婷婷综合网| 91精品国产一区二区三区香蕉| 亚洲国产精品久久一线不卡| 欧美偷拍一区二区| 亚洲成人手机在线| 在线电影国产精品| 天天综合网天天综合色| 日韩美女主播在线视频一区二区三区| 亚洲成人精品在线观看| 欧美精品少妇一区二区三区| 日本伊人色综合网| 26uuu久久综合| av午夜一区麻豆| 亚洲精品国产a| 欧美高清www午色夜在线视频| 日韩 欧美一区二区三区| 日韩欧美国产不卡| 国产成人免费视频一区| 亚洲日穴在线视频| 91麻豆精品国产91| 韩国欧美国产1区| 日本一区二区在线不卡| 色婷婷久久久久swag精品| 首页国产欧美日韩丝袜| 久久综合狠狠综合久久综合88 | 亚洲精品国产视频| 91精品蜜臀在线一区尤物| 蜜臀av一区二区三区| 国产目拍亚洲精品99久久精品| 成人爽a毛片一区二区免费| 伊人色综合久久天天| 欧美一级在线免费| 不卡一区二区中文字幕| 三级亚洲高清视频| 久久久精品国产99久久精品芒果| 一本一道综合狠狠老| 日日欢夜夜爽一区| 国产精品久久久久久久久免费樱桃| 欧美优质美女网站| 国产精品一二三四| 亚洲r级在线视频| 国产欧美日韩在线看| 5月丁香婷婷综合| 91蜜桃免费观看视频| 美国毛片一区二区三区| 亚洲激情自拍视频| 久久免费电影网| 欧美日韩国产综合草草| 成人黄色电影在线 | 色综合天天综合在线视频| 蜜臀99久久精品久久久久久软件| 亚洲天堂成人网| 久久精品视频在线免费观看| 欧美日韩国产电影| 91视频免费观看| 成人动漫视频在线| 国产美女精品一区二区三区| 日韩一区精品视频| 亚洲国产一区视频| 亚洲欧洲av另类| 国产目拍亚洲精品99久久精品| 日韩免费性生活视频播放| 欧美日韩中文字幕精品| av网站免费线看精品| 国产一区二区剧情av在线| 久久精品国产99国产精品| 婷婷激情综合网| 五月激情综合色| 舔着乳尖日韩一区| 天涯成人国产亚洲精品一区av| 亚洲精品菠萝久久久久久久| 国产精品福利一区二区| 国产三级一区二区| 国产三级三级三级精品8ⅰ区| 久久影院午夜论| 精品久久久久久久久久久久久久久 | 亚洲一区二区三区四区五区中文 | 欧美一区在线视频| 日韩视频在线永久播放| 91精品国产高清一区二区三区| 欧美精品少妇一区二区三区 | 精品国产91乱码一区二区三区| 欧美一区二区三区啪啪| 日韩美一区二区三区| 久久青草欧美一区二区三区| 日韩精品专区在线影院重磅| 精品福利一二区| 久久九九久久九九| 日韩理论片在线| 亚洲一区二区免费视频| 日韩精品一区第一页| 蜜臀精品一区二区三区在线观看| 久久99精品视频| 不卡视频在线观看| 欧美中文字幕一区| 日韩精品资源二区在线| 国产午夜精品理论片a级大结局| 国产精品看片你懂得| 依依成人精品视频| 日韩成人dvd| 粉嫩av一区二区三区在线播放| 97久久精品人人爽人人爽蜜臀| 欧美制服丝袜第一页| 欧美大片在线观看| 国产精品国产三级国产有无不卡| 亚洲精品国产高清久久伦理二区| 日本特黄久久久高潮 | 亚洲精品乱码久久久久久| 日韩国产欧美视频| 国产综合久久久久久鬼色 | 麻豆91精品91久久久的内涵| 高清免费成人av| 在线观看三级视频欧美| 精品播放一区二区| 亚洲精品美腿丝袜| 国产在线精品国自产拍免费| 91福利在线播放| 精品国产伦一区二区三区免费| 成人免费在线播放视频| 麻豆91精品视频| 欧美日韩中文字幕精品| 国产欧美一区二区精品性色| 亚洲一二三四区| 成人美女在线视频|