资源简介
最新版本linux libc库实现源码.里面有各种函数的实现源码,很适合学习
代码片段和文件信息
/* ansiAssert.c - ANSI ‘assert‘ documentation */
/* Copyright 1992 Wind River Systems Inc. */
/*
modification history
--------------------
01a24oct92smb written.
*/
/*
DEscriptION
The header assert.h defines the assert() macro and refers to another
macro NDEBUG which is not defined by assert.h. If NDEBUG is defined
as a macro at the point in the source file where assert.h is included
the assert() macro is defined simply as:
.CS
#define assert(ignore) ((void)0)
.CE
ANSI specifies that assert() should be implemented as a macro not as a
routine. If the macro definition is suppressed in order to access an
actual routine the behavior is undefined.
INCLUDE FILES: stdio.h stdlib.h assert.h
SEE ALSO: American National Standard X3.159-1989
*/
/******************************************************************************
*
* assert - put diagnostics into programs (ANSI)
*
* If an expression is false (that is equal to zero) the assert() macro
* writes information about the failed call to standard error in an
* implementation-defined format. It then calls abort().
* The diagnostic information includes:
* - the text of the argument
* - the name of the source file (value of preprocessor macro __FILE__)
* - the source line number (value of preprocessor macro __LINE__)
*
* INCLUDE: stdio.h stdlib.h assert.h
*
* RETURNS: N/A
*
*/
void assert
(
int a
)
{
/* This is a dummy for documentation purposes */
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 295 1997-08-01 10:27 libc\Makefile
..A.SHR 9 2007-06-28 14:20 libc\Desktop_2.ini
..A.SHR 9 2007-06-28 14:34 libc\Desktop_1.ini
文件 45944 2001-10-12 09:15 libc\time\ansiTime.c
文件 1984 2000-11-18 16:51 libc\time\asctime.c
文件 1618 2001-10-12 09:15 libc\time\clock.c
文件 1975 1993-06-08 02:10 libc\time\ctime.c
文件 1086 2001-10-12 09:15 libc\time\difftime.c
文件 5708 1997-08-01 10:04 libc\time\gmtime.c
文件 2596 2000-11-18 16:51 libc\time\localtime.c
文件 1059 1993-06-08 02:10 libc\time\locTime.c
文件 635 2001-11-08 10:13 libc\time\Makefile
文件 5047 1997-08-01 10:04 libc\time\mktime.c
文件 19682 2000-11-18 16:51 libc\time\strftime.c
文件 1325 1993-06-08 02:10 libc\time\time.c
..A.SHR 9 2007-06-28 14:21 libc\time\Desktop_2.ini
..A.SHR 9 2007-06-28 14:34 libc\time\Desktop_1.ini
文件 39370 1997-08-01 10:04 libc\string\ansiString.c
文件 940 2001-11-08 10:13 libc\string\Makefile
文件 1267 1994-12-14 11:16 libc\string\memchr.c
文件 1459 1994-12-14 11:17 libc\string\memcmp.c
文件 1372 1994-12-14 11:17 libc\string\memcpy.c
文件 1328 2009-05-06 14:26 libc\string\memmove.c
文件 1235 1995-05-20 10:38 libc\string\memset.c
文件 1142 1994-12-14 11:17 libc\string\strcat.c
文件 1173 1994-12-14 11:17 libc\string\strchr.c
文件 1078 1994-12-14 11:17 libc\string\strcmp.c
文件 3618 2002-06-27 08:54 libc\string\strcoll.c
文件 885 1994-12-14 11:18 libc\string\strcpy.c
文件 1333 2009-05-06 14:46 libc\string\strcspn.c
............此处省略174个文件信息
- 上一篇:jpeg格式图片的读取和显示
- 下一篇:Depands DLL查看工具
相关资源
- 我的世界源码(易语言版)
- labview编程软件滤波器以及编写程序设
- 我的界面(visual foxpro)源码
- Visio图标-最新最全的网络通信图标库
- 易语言:一键cf基址源码
- Python中Numpy库最新教程
- 60个HFSS 仿真模型库
- The Secret Path 3D 3D魔方迷宫[源码][scra
- scratch垃圾分类源码(最终版本).sb
-
st
yles 引文样式语言( CSL ) 引文样 - MoNyog8.5+破解补丁
- ANSYS LS-DYNA
- 安卓QQ6.71协议源码易语言,qq协议源码
- 编译原理实验工具及参考源码(lex&
- E盾偷后台工具源码
- 全国4级地址库,京东数据
- UNIX/LINUX编程实践教程的源码
- 一个超简单的企业管理系统(带ACCE
- 十以内加减法练习 powerbuilder源码
- 数据库课设:图书管理系统报告
- 农场开发项目
- OCR源码
- PLC上位机编程软件
- 用foobar2000听google音乐[更新一下]
- 学生信息管理系统源码
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
- 毕业论文之温度传感器DS18B20(源码
- 可自定义导航网站源码
- 栅栏填充算法源码(VC)
评论
共有 条评论