上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 46 下一页
摘要: ``` import sys import base64 import os import re s1 = '"=?UTF-8?B?56mG6Zi/5rWpKOWnnOW8iyk=?=" , "=?UTF-8?B?56mG6Zi/5rWpKOWnnOW8iyk=?=" ' s2 = '"=?UTF-8?B?56mG6Zi/5rWpKOWnnOW8iyk=?=" ' s3 = "=?GBK?B?w... 阅读全文
posted @ 2018-01-15 16:45 苏小北1024 阅读(415) 评论(0) 推荐(0) 编辑
摘要: ``` #cat snprintf.c #include #include #include struct student{ int age; char *name; }; int main(void) { /*t1 结构体指针*/ struct student *t1; t1 = malloc(sizeof(struct student)); t1->age = 11;... 阅读全文
posted @ 2018-01-10 15:32 苏小北1024 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 定义结构体class ,class结构体中包含student 结构体指针 如何访问,赋值给class student? ./struct_find class num:1, name:class1 student name:jack, age:22 `` 阅读全文
posted @ 2018-01-10 15:24 苏小北1024 阅读(232) 评论(0) 推荐(0) 编辑
摘要: ``` #cat lstat.c #include #include #include #include #include #define MINORBITS 20 #define MINORMASK ((1U > MINORBITS)) #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK)) int main(vo... 阅读全文
posted @ 2018-01-10 13:20 苏小北1024 阅读(214) 评论(0) 推荐(0) 编辑
摘要: ``` cat bb.c include include include include include define KEYVALLEN 100 / Delete left side blank / char l_trim(char szOutput, const char szInput) { 阅读全文
posted @ 2018-01-04 19:25 苏小北1024 阅读(270) 评论(0) 推荐(0) 编辑
摘要: ``` #cat aa.c #include #include #include #include #define DEBUG #ifdef DEBUG static int log_debug(const char *format, ...) { va_list argPtr; int count; va_start(argPtr, format); ... 阅读全文
posted @ 2018-01-04 17:06 苏小北1024 阅读(301) 评论(0) 推荐(0) 编辑
摘要: ``` cat aa.c / ringbuf .c / include include define NMAX 8 int iput = 0; / 环形缓冲区的当前放入位置 / int iget = 0; / 缓冲区的当前取出位置 / int n = 0; / 环形缓冲区中的元素总数量 / doub 阅读全文
posted @ 2018-01-02 12:29 苏小北1024 阅读(578) 评论(0) 推荐(0) 编辑
摘要: ref from : http://blog.csdn.net/zhuxiaoping54532/article/details/49680537 main 在驱动程序里, ioctl() 函数上传送的变量 cmd 是应用程序用于区别设备驱动程序请求处理内容的值。cmd除了可区别数字外,还包含有助于 阅读全文
posted @ 2017-12-27 12:31 苏小北1024 阅读(7864) 评论(0) 推荐(0) 编辑
摘要: 一、背景 list.h文件位于linux/include下,内核中链表的操作函数都在其中。它有许多关于链表的操作函数,所以我们可以尝试将list.h拉到用户态中来使用,这样,我们在用户态中若要用到链表就可以直接调用其中已经实现好的函数了。我这里将拉到用户态的经过“改造”后的list.h文件代码列出, 阅读全文
posted @ 2017-12-25 15:47 苏小北1024 阅读(2486) 评论(0) 推荐(0) 编辑
摘要: 如何优雅的拔掉 /dev/sdl? 阅读全文
posted @ 2017-12-25 13:33 苏小北1024 阅读(287) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 46 下一页