yaboxing / c_interface_reused

C语言接口与实现-创建可复用软件的技术-源码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

.
├── 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 未完成
  • 未测试

About

C语言接口与实现-创建可复用软件的技术-源码

License:Apache License 2.0


Languages

Language:C 85.5%Language:C++ 7.1%Language:Makefile 7.0%Language:Assembly 0.5%