c
文章平均质量分 54
liqingshan_sh
这个作者很懒,什么都没留下…
展开
-
note for console
pragma, tcgetattr, tcsetattr,原创 2015-01-05 15:51:28 · 285 阅读 · 0 评论 -
atomic
movx source, destinationsource 和 destination 的值可以是内存地址,存储在内存中的数据值,指令语句中定义的数据值,或者是寄存器。GNU汇编器为mov指令添加了一个维度,在其中必须声明要传送的数据元素的长度。通过把一个附加字符添加到mov助记符来声明这个长度。因此指令就变成了如下:movx其中 x 可以是下面的字符:l 用于32位的长字值,原创 2014-12-18 10:08:27 · 365 阅读 · 0 评论 -
webbench
webbench 网站压力测试在一个网站上线之前,能承受多大访问量,在大访问量情况下性能怎么样。压力测试#include const char * strrchr ( const char * str, int character ); char * strrchr ( char * str, int character );return原创 2014-11-18 19:53:07 · 302 阅读 · 0 评论 -
cJSON
全局变量的说明之前再冠以static就构成了静态的全局变量。全局变量本身就是静态存储方式,静态全局变量当然也是静态存储方式。这两者在存储方式上并无不同。这丙者的区别虽在于非静态全局变量的作用域是整个源程序,当一个源程序由多个源文件组成时,非静态的全局变量在各个源泉文件中都是有效的。而静态全局变量则限制了其作用域,即只在定义该变量的源文件内有效,在同一源程序的其它源文件中不能使用它。由于静态全局变量原创 2014-12-08 10:35:38 · 279 阅读 · 0 评论 -
tiny httpd
feofint feof(FILE *stream)This function returns a non-zero value when End-of-File indicator associated with the stream is set, else zero is returned. S_IFMTthis is a bitmask used t原创 2014-11-25 13:49:12 · 315 阅读 · 0 评论 -
note for "strtok"
description sequence calls to this function split str into tokens tokens are sequences of contiguous characters separated by any of characters that are part of delimitershow to call first c原创 2015-01-27 16:40:18 · 257 阅读 · 0 评论