自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 realtime library: struct sigevent introduce

struct sigevent:This element specifies how the calling process is notified once the operation terminates. If the `sigev_notify element is `SIGEV_NONE, no notification is sent. If it is`SIGEV_SIGNAL

2005-11-18 15:30:00 1186

原创 PHP5的哈希函数

static inline ulong zend_inline_hash_func(char *arKey, uint nKeyLength){ register ulong hash = 5381; /* variant with the hash unrolled eight times */ for (; nKeyLength >= 8; nKeyLen

2005-03-21 22:12:00 1108 1

原创 用subversion来管理工程

暂无

2005-02-20 12:02:00 671

原创 用flex和bison来创建自己的语言

暂无

2005-02-20 11:46:00 1028

原创 用tex管理文档

暂无

2005-02-20 11:44:00 726

原创 RH7.2利用GRUB启动NTFS分区

# grub.conf generated by anaconda## Note that you do not have to rerun grub after making changes to this file# NOTICE:  You do not have a /boot partition.  This means that#          all kernel and ini

2005-02-20 09:41:00 1593

原创 A* 算法实现

char g[24][81] = {{"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo"},{"o o          o                                                                 o"},{"o o       

2005-02-19 17:40:00 1019

原创 简单的trace函数

#include #include #include #include #include #define __a2x(ch)      (((ch) & 15) + ((ch) > 9? 9: 0))#define __x2a(n)       ((n & 15) + (n > 9? 55: 48))#define __print_xdigital__(buffer, r, l) /do

2005-01-18 20:37:00 1494 1

原创 摘自PHP的HASH算法实现

/* * 头文件 * 说明:此实现不保存对象,只保存对象的引用 */#ifndef _HASH_H#define _HASH_H#ifdef __cplusplusextern "C" {#endiftypedef struct tagHASHBUCKET HASHBUCKET, *LPHASHBUCKET;typedef struct tagHASHTABLE HASHTABLE, *LPH

2005-01-18 20:26:00 1977 4

原创 split实现

/* * strtok的替代函数 * int * split(int argc, char *argv[], char *string, char *delimiter) * argc - 最大分割token数 * argv - 保存token地址 * string - 要分割成token的字符串 * delimiter - 分界符,NULL表示默认空白字符 * 返回值:实际的token数,这个数

2005-01-18 19:53:00 844

原创 base64算法实现

intbase64_encode(unsigned char *out, unsigned char *in, int size){    register int position = 0;    register unsigned char *dst = out, *src = in;    in += size;    while (src     {        switch (po

2005-01-18 15:20:00 956

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除