C语言&嵌入式 第8页
Linux&C语言基础-天煜博客

Linux&C语言基础gcc编译、静态库与动态库(共享库)的制作

本文用到的循环链表代码来源于《C语言 算法与数据结构 五种双向链表的实现方法》的第三种 静态库 库文件名:libxx.a xx 指库名 先编译成object文件  gcc -c llist.c 将object文件编译成静态库...
haoxuan的头像-天煜博客haoxuan4年前
0388
C语言 算法与数据结构 五种双向链表的实现方法-天煜博客

C语言 算法与数据结构 五种双向链表的实现方法

第一种 llist.h #ifndef __LLIST_H__ #define __LLIST_H__ #define LLIST_FORWARD 1 #define LLIST_BACKWARD 2 typedef void llist_op(void *); typedef int llist_cmp(const void *,const void...
haoxuan的头像-天煜博客haoxuan4年前
06112
Linux man 手册 分类与结构-天煜博客

Linux man 手册 分类与结构man 1 man 2 man 3 man N

man手册分类 序号 英文 中文 1 Executable programs or shell commands 可执行程序或shell命令 2 System calls (functions provided by the kernel) 系统调用 3  Library calls (functions wit...
haoxuan的头像-天煜博客haoxuan4年前
01346