摘要: 对Busybox 1.1.2版的大体框架进行了抽取,以便于看清。 1 /* 2 Author: 3 Framework of busybox 4 5 A simple demo to show how busybox works 6 7 complie: 8 gcc ***.c -o busybox 9 10 run: 11 ./busybox bbtest 12 13 */ 14 15 #include <stdlib.h> 16 #include <stdarg.h> 17 #include <errno.h> 18 #include <strin 阅读全文
posted @ 2012-10-27 20:36 strorehouse 阅读(4972) 评论(0) 推荐(0) 编辑