资源简介
最新版本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查看工具
相关资源
- 学生成绩管理系统数据库课程设计报
- AD16视频教程和封装库和原理图库
- 1602电子时钟万年历isis仿真文件,程序
- 计算器源码
- 数据库课程设计中国地质大学武汉计
- 本地数据库储存
- 教师管理系统教师信息管理系统
- 遥感图像NDVI植被指数源码vc
- 随机森林源码
- 7万条中文同义词词库.txt
- 2021年9月计算机二级office模拟题库
- 自考数据库系统原理选择题总结
- compat-libcwait-2.1-1.i386.rpm
- 一个档案管理系统 全部源代码 包括数
- CnComm 1.51(串口类 串口库 完全源码
- QT 串口源码 串口 QT 串口助手代码
- JTAG的封装库及演示
- 尚硅谷SpringBoot视频 ,百度网盘分享链
- bat文件加密解密源码
- 数据库课程设计:仓库管理系统源代
- glut 各种库
- 易语言源码幻灵游侠源码.rar
- 易语言源码QQ2012PC协议易语言源码.r
- 数据库原理及应用 课程设计任务书
- Qt 超级日记本
- CWM元模型研究及其在广发银行数据仓
- 数据库发展史毕业论文中英文翻译
- modbus主机源码
- PC与松下PLC通讯源码
- 基于STM32的MP3播放器设计与实现(提供
评论
共有 条评论