摘要: 1. autoscan扫描当前目录生成configure.scan 2. 将configure.scan改名为configure.ac 3. 编辑configure.ac 4. aclocal生成aclocal.m4 5. autoconf生成configure 6. autoheader生成con 阅读全文
posted @ 2018-05-28 17:51 jhson 阅读(535) 评论(0) 推荐(0) 编辑
摘要: popen() 函数通过创建一个管道,调用 fork 产生一个子进程,执行一个 shell 以运行命令来开启一个进程。这个进程必须由 pclose() 函数关闭,而不是 fclose() 函数。pclose() 函数关闭标准 I/O 流,等待命令执行结束,然后返回 shell 的终止状态。如果 sh 阅读全文
posted @ 2018-05-25 16:27 jhson 阅读(12941) 评论(0) 推荐(1) 编辑
摘要: 1 void hexdump(char *buf, int len) 2 { 3 int i = 0; 4 5 printf("\n----------------------hexdump------------------------\n"); 6 for(i = 0; i < len; i++) { 7 printf("%02x ... 阅读全文
posted @ 2018-05-25 16:18 jhson 阅读(1848) 评论(0) 推荐(0) 编辑
摘要: 1. 字符串中移除一个字符 2. 字符串转为16进制整数 阅读全文
posted @ 2018-05-25 16:16 jhson 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 一、git常用命令1. git remote -v 查看远程路径2. git log --stat 显示最近修改了哪些文件3. tag 打tag git tag -a tagname -m "commit" 推送tag到服务器 git push origi... 阅读全文
posted @ 2015-03-24 20:38 jhson 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 1. dbus daemon2. avahi daemon3. airtunes server4. pcm音频数据的播放5. 编译 阅读全文
posted @ 2014-01-07 17:36 jhson 阅读(414) 评论(0) 推荐(0) 编辑