Skip to content

Commit ad6b0e7

Browse files
committed
new utils ctags, cxref, cflow
1 parent 36782bc commit ad6b0e7

File tree

14 files changed

+2084
-5
lines changed

14 files changed

+2084
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,17 @@ Because it is a FAQ, the major differences between this project and uutils are:
6565
- [x] basename
6666
- [x] bc
6767
- [x] c99 (Development)
68+
- [x] cflow (Development)
6869
- [x] cksum
6970
- [x] cmp
7071
- [x] comm
7172
- [x] compress (compress cat.)
7273
- [x] cp
7374
- [x] crontab (cron cat.)
7475
- [x] csplit
76+
- [x] ctags (Development)
7577
- [x] cut
78+
- [x] cxref (Development)
7679
- [x] delta (SCCS)
7780
- [x] diff
7881
- [x] dirname
@@ -198,11 +201,6 @@ Because it is a FAQ, the major differences between this project and uutils are:
198201

199202
## Stage 0 - Not started
200203

201-
### Development category
202-
- [ ] cflow (Development)
203-
- [ ] ctags (Development)
204-
- [ ] cxref (Development)
205-
206204
### i18n category
207205
- [ ] gettext (i18n)
208206
- [ ] locale (i18n)

cc/Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,23 @@ plib = { path = "../plib" }
1616
[dev-dependencies]
1717
tempfile = "3"
1818

19+
[lib]
20+
name = "posixutils_cc"
21+
path = "./lib.rs"
22+
1923
[[bin]]
2024
name = "pcc"
2125
path = "./main.rs"
2226

27+
[[bin]]
28+
name = "cflow"
29+
path = "./cflow.rs"
30+
31+
[[bin]]
32+
name = "ctags"
33+
path = "./ctags.rs"
34+
35+
[[bin]]
36+
name = "cxref"
37+
path = "./cxref.rs"
38+

0 commit comments

Comments
 (0)