版权 © 2008, 2009 宋劲杉, 北京亚嵌教育研究中心
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being 前言, with no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in 附录 C, GNU Free Documentation License Version 1.3, 3 November 2008.
2009.2.27
修订历史 | |
---|---|
修订 0.6 | 2009.2.27 |
添加了GFDL许可证,正式网络发布。第三部分还很粗糙,错误也有不少,有待改进。第一部分和第二部分已经比较成熟,第二部分还差三章没写。 |
目录
插图清单
.c
文件char *
指针的值赋给int *
指针argv
指针数组strcpy(3)
strcpy(3)
strcpy(3)
strcpy(3)
malloc
和free
实现myprintf
函数的参数布局表格清单
void func(const unit_t *p);
void func(unit_t *p);
void func(unit_t *p);
void alloc_unit(unit_t **pp);
void free_unit(unit_t *p);
:unit_t *func(void);
unit_t *alloc_unit(void);
void free_unit(unit_t *p)
;void func(void (*f)(void *), void *p);
范例清单