2015年10月1日

glibc | strcpy

摘要: char *strcpy(char *dest, const char *src); /* Copy SRC to DEST. */ 阅读全文

posted @ 2015-10-01 22:53 Excavator 阅读(155) 评论(0) 推荐(0) 编辑

glibc | strlen

摘要: size_t strlen(const char *str); /* Return the length of the null-terminated string STR. Scan for the null terminator quickly by testing four bytes at a time. */ 阅读全文

posted @ 2015-10-01 22:52 Excavator 阅读(177) 评论(0) 推荐(0) 编辑

C++ | 数组与指针

摘要: C 中的数组和指针区别还是很大的,没有了解以前总以为是差不多的,实则不然。 阅读全文

posted @ 2015-10-01 19:03 Excavator 阅读(132) 评论(0) 推荐(0) 编辑

新的开始

摘要: 域名还没有审核通过,暂时在这里写东西了。 阅读全文

posted @ 2015-10-01 16:35 Excavator 阅读(129) 评论(0) 推荐(0) 编辑

glibc | 和 libc 的关系

摘要: libc 是 Linux 下的 ANSI C 函数库;glibc 是 Linux 下的 GUN C 函数库。 阅读全文

posted @ 2015-10-01 15:47 Excavator 阅读(220) 评论(0) 推荐(0) 编辑

Linux | 守护进程

摘要: 守护进程,一种特殊的在后台运行的进程,Linux 的很多服务器程序就是守护进程,守护进程和僵尸进程:http://blog.sina.com.cn/s/blog_58b48d1e0100fy6f.html如何编写守护进程:http://blog.csdn.net/yefengnidie/articl... 阅读全文

posted @ 2015-10-01 00:03 Excavator 阅读(139) 评论(0) 推荐(0) 编辑

导航