[置顶] 偶遇的技术,愿有时间留给我去追寻O(∩_∩)O~

socket can

CAN 设备 使用伯克利的socket接口和linux网络协议栈的一种实现方法

http://blog.csdn.net/zhangxiaopeng0829/article/details/7646639


###############################    我是分割线   ##########################################


linux下的iptables

http://www.chinabin.cn/opensource-world/1172.html

###############################    我是分割线   ##########################################

一个C语言双向链表API

http://www.tetrasys-design.net/home/Linklist/index.html

Doubly Linked List API

[置顶] 偶遇的技术,愿有时间留给我去追寻O(∩_∩)O~_第1张图片

有兴趣的也可以去看看linux内核链表在Linux内核链表中,不是在链表结构中包含数据,而是在数据结构中包含链表节点。

http://blog.csdn.net/tinyhare/article/details/8064407

http://blog.csdn.net/danfeng827/article/details/1618014

###############################    我是分割线   ##########################################

一个C语言的哈希表uthash

http://uthash.sourceforge.net/

Any C structure can be stored in a hash table using uthash. Just add a UT_hash_handle to the structure and choose one or more fields in your structure to act as the key. Then use these macros to store, retrieve or delete items from the hash table.


###############################    我是分割线   ##########################################

Lua 

是一个小巧的脚本语言。作者是 巴西 人。该 语言 设计 目的是为了嵌入应用程序中,从而为应用程序提供灵活的扩展和定制功能。
Lua脚本可以很容易的被C/C++代码调用,也可以反过来调用C/C++的函数,这使得Lua在应用程序中可以被广泛应用。不仅仅作为扩展脚本,也可以作为普通的配置文件,代替XML,Ini等文件格式,并且更容易理解和维护。
http://manual.luaer.cn/ 中文手册
http://book.luaer.cn/在线教程

你可能感兴趣的:(c,list,api,语言)