C语言
文章平均质量分 76
把我的壶还我
小学未毕业. 被生济所逼,自学计算机技术,主攻LINUX/UNIX下的C/C++,python 语言开发. 主要工作是服务器开发, 现就职sina!O(∩_∩)O~
展开
-
自己的编码注释模板
<br />#ifndef _XX_XXX_H<br />#define _XX_XXX_H (1)<br />/******************************************************************************<br /> * Copyrigh (C) 2009 by daemonpei<br /> * File: <br /> * Author: <br /> * Version: <br /> * Date:原创 2010-07-07 21:45:00 · 371 阅读 · 0 评论 -
迅雷专用链接(thunder://)解析,适用所有base64解码
<br />最近在做迅雷嵌入式版的移植工作,需要对迅雷的链接做解析。<br />研究发现时用base64 encode的,在这里把deconde的过程写出来,<br />这样就可以看到链接的实际内容,代码比较简单<br />#include <stdio.h>#include <string.h>static char base64_decode_map[256] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255原创 2010-06-12 13:51:00 · 4764 阅读 · 1 评论 -
洗牌程序(随机数组)
<br />最近被面试了一次C语言,给我出的是洗牌程序,模拟洗54张牌,越乱越好!<br />这是回来编写完成并运行通过的代码<br /> <br />#include <stdio.h>#include <stdlib.h>#include <time.h>unsigned int fun_rand(unsigned int max){ unsigned int t = 0; if (max == 0) {原创 2010-06-12 11:05:00 · 565 阅读 · 0 评论 -
写了一个随机生成mac地址的小工具~
<br />1 用gcc编译一下<br />2 运行 ^.^<br /> 不给生成多少个mac的参数就生成一个mac<br /> 给参数的话就生成指定的那么多<br />#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>/* * make a true rand */static u原创 2010-06-12 14:27:00 · 3936 阅读 · 0 评论