# c_interface_reused **Repository Path**: andrewgithub/c_interface_reused ## Basic Information - **Project Name**: c_interface_reused - **Description**: C语言接口与实现-创建可复用软件的技术-源码 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-08 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` . ├── ap │   ├── ap.c │   ├── ap.h │   ├── calc.c │   └── Makefile ├── arena │   ├── arena.c │   ├── arena.h │   └── Makefile ├── arith │   ├── arith.c │   ├── arith.h │   └── Makefile ├── array │   ├── array.c │   ├── array.h │   └── Makefile ├── assert │   ├── assert.c │   ├── assert.h │   └── Makefile ├── atom │   ├── atom.c │   ├── atom.h │   └── Makefile ├── bit │   ├── bit.c │   ├── bit.h │   └── Makefile ├── except │   ├── except.c │   ├── except.h │   └── Makefile ├── format │   ├── format.c │   ├── format.h │   └── Makefile ├── getword │   ├── getword.c │   └── getword.h ├── list │   ├── list.c │   ├── list.h │   └── Makefile ├── Makefile ├── mem │   ├── Makefile │   ├── mem.c │   └── mem.h ├── memcheck │   └── main.c ├── mp │   ├── Makefile │   ├── mp.c │   ├── mpcalc.c │   └── mp.h ├── README.md ├── ring │   ├── Makefile │   ├── ring.c │   └── ring.h ├── seq │   ├── Makefile │   ├── seq.c │   └── seq.h ├── set │   ├── Makefile │   ├── set.c │   └── set.h ├── stack │   ├── Makefile │   ├── stack.c │   └── stack.h ├── str │   ├── ids.c │   ├── Makefile │   ├── str.c │   └── str.h ├── table │   ├── Makefile │   ├── table.c │   └── table.h ├── text │   ├── Makefile │   ├── text.c │   └── text.h ├── thread │   ├── chan.c │   ├── chan.h │   ├── sem.h │   ├── sleve.c │   ├── sort.c │   ├── spin.c │   ├── swtch.s │   ├── thread.c │   └── thread.h ├── xp │   ├── Makefile │   ├── xp.c │   └── xp.h └── xref └── xref.c ``` > **Note.** > - thread 未完成 > - 未测试