摘要: mycat/mycat.c 1 #include "apue.h" 2 #define BUFFSIZE 4096 3 int 4 main(void) 5 { 6 int n; 7 char buf[BUFFSIZE]; 8 while ((... 阅读全文
posted @ 2014-07-13 23:06 paullam 阅读(227) 评论(0) 推荐(0) 编辑
摘要: file/ls1.c 1 #include "apue.h" 2 #include 3 int 4 main(int argc, char *argv[]) 5 { 6 DIR *dp; 7 struct dirent *dirp; 8 if (... 阅读全文
posted @ 2014-07-13 23:05 paullam 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 运行结果:Program.cs 1 using System; 2 3 namespace Wrox.ProCSharp.Delegates 4 { 5 class Program 6 { 7 static void Main() 8 { 9 ... 阅读全文
posted @ 2014-07-13 22:17 paullam 阅读(301) 评论(0) 推荐(0) 编辑
摘要: Character 字符串:数据类型描述存储char(n)固定长度的字符串。最多 8,000 个字符。nvarchar(n)可变长度的字符串。最多 8,000 个字符。varchar(max)可变长度的字符串。最多 1,073,741,824 个字符。text可变长度的字符串。最多 2GB 字符数据... 阅读全文
posted @ 2014-06-23 00:55 paullam 阅读(231) 评论(0) 推荐(0) 编辑
摘要: global.h 1 /* GLOBAL.H - RSAREF types and constants 2 */ 3 4 /* PROTOTYPES should be set to one if and only if the compiler supports 5 function argu... 阅读全文
posted @ 2014-06-19 14:46 paullam 阅读(593) 评论(1) 推荐(0) 编辑
摘要: 非常好的正则表达式教程:http://deerchao.net/tutorials/regex/regex-1.htm 阅读全文
posted @ 2014-06-17 10:08 paullam 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 权限范围的表示法如下:u:User,即文件或目录的拥有者。g:Group,即文件或目录的所属群组。o:Other,除了文件或目录拥有者或所属群组之外,其他用户皆属于这个范围。a:All,即全部的用户,包含拥有者,所属群组以及其他用户。有关权限代号的部分,列表于下:r:读取权限,数字代号为"4"。w:... 阅读全文
posted @ 2014-06-17 10:06 paullam 阅读(273) 评论(0) 推荐(0) 编辑
摘要: Linux内核版本:2.6.20include/asm-generic/errno-base.h 1 #define EPERM 1 /* Operation not permitted */ 2 #define ENOENT 2 /* No ... 阅读全文
posted @ 2014-06-11 11:56 paullam 阅读(279) 评论(0) 推荐(0) 编辑
摘要: BMP文件由位图文件头、位图信息头、调色板和图像数据四部分组成(1)位图文件头1 typedef struct tagBITMAPFILEHEADER2 {3 WORD bfType; //位图文件的类型,必须为BM(1-2字节)4 DWORD b... 阅读全文
posted @ 2014-05-30 15:57 paullam 阅读(417) 评论(0) 推荐(0) 编辑
摘要: System V 共享内存信息结构struct shmid_ds { struct ipc_perm shm_perm; // operation permission struct size_t shm_segsz; // segment size pid_t shm_lpid;... 阅读全文
posted @ 2014-05-30 09:27 paullam 阅读(206) 评论(0) 推荐(0) 编辑