|
13 | 13 |
|
14 | 14 | #### Containrers: |
15 | 15 | - [Dynamically allocated array with sort and search features](https://github.com/kala13x/libxutils/blob/main/src/data/array.h) |
16 | | -- [Dynamically allocated byte and data buffers](https://github.com/kala13x/libxutils/blob/main/src/data/xbuf.h) |
| 16 | +- [Dynamically allocated byte and data buffers](https://github.com/kala13x/libxutils/blob/main/src/data/buf.h) |
17 | 17 | - [Dynamically allocated key-value pair map](https://github.com/kala13x/libxutils/blob/main/src/data/map.h) |
18 | 18 | - [Dynamically allocated hash map](https://github.com/kala13x/libxutils/blob/main/src/data/hash.h) |
19 | | -- [Dynamically allocated C string](https://github.com/kala13x/libxutils/blob/main/src/data/xstr.h) |
| 19 | +- [Dynamically allocated C string](https://github.com/kala13x/libxutils/blob/main/src/data/str.h) |
20 | 20 | - [Implementation of linked list](https://github.com/kala13x/libxutils/blob/main/src/data/list.h) |
21 | 21 |
|
22 | 22 | #### Network: |
|
41 | 41 |
|
42 | 42 | #### System: |
43 | 43 | - [Cross-platform file and directory operations](https://github.com/kala13x/libxutils/blob/main/src/sys/xfs.h) |
44 | | -- [Cross-platform CPU affinity manipulation](https://github.com/kala13x/libxutils/blob/main/src/sys/xcpu.h) |
| 44 | +- [Cross-platform CPU affinity manipulation](https://github.com/kala13x/libxutils/blob/main/src/sys/cpu.h) |
45 | 45 | - [Implementation of advanced file search](https://github.com/kala13x/libxutils/blob/main/src/sys/xfs.h) |
46 | 46 | - [System time manipulation library](https://github.com/kala13x/libxutils/blob/main/src/sys/xtime.h) |
47 | | -- [Performance monitoring library](https://github.com/kala13x/libxutils/blob/main/src/sys/xtop.h) |
| 47 | +- [Performance monitoring library](https://github.com/kala13x/libxutils/blob/main/src/sys/mon.h) |
48 | 48 | - [Simple and fast memory pool](https://github.com/kala13x/libxutils/blob/main/src/sys/pool.h) |
49 | | -- [Advanced logging library](https://github.com/kala13x/libxutils/blob/main/src/sys/xlog.h) |
| 49 | +- [Advanced logging library](https://github.com/kala13x/libxutils/blob/main/src/sys/log.h) |
50 | 50 |
|
51 | 51 | #### Miscellaneous: |
52 | | -- [JSON parser and writer library with lint and minify support](https://github.com/kala13x/libxutils/blob/main/src/data/xjson.h) |
| 52 | +- [JSON parser and writer library with lint and minify support](https://github.com/kala13x/libxutils/blob/main/src/data/json.h) |
53 | 53 | - [Implementation of JSON Web Tokens with HS256 and RS256](https://github.com/kala13x/libxutils/blob/main/src/data/jwt.h) |
54 | 54 | - [Cross-platform synchronization library](https://github.com/kala13x/libxutils/blob/main/src/sys/sync.h) |
55 | 55 | - [Cross-platform multithreading library](https://github.com/kala13x/libxutils/blob/main/src/sys/thread.h) |
56 | | -- [Command-Line interface operations](https://github.com/kala13x/libxutils/blob/main/src/sys/xcli.h) |
57 | | -- [C String manipulation library](https://github.com/kala13x/libxutils/blob/main/src/data/xstr.h) |
| 56 | +- [Command-Line interface operations](https://github.com/kala13x/libxutils/blob/main/src/sys/cli.h) |
| 57 | +- [C String manipulation library](https://github.com/kala13x/libxutils/blob/main/src/data/str.h) |
58 | 58 |
|
59 | 59 | ### Installation |
60 | 60 | There are several ways to build and install the project. |
@@ -186,7 +186,7 @@ cmake . && make |
186 | 186 | #### XTOP and more |
187 | 187 |
|
188 | 188 | <p align="center"> |
189 | | - <img src="https://raw.githubusercontent.com/kala13x/libxutils/main/misc/xtop.png" alt="alternate text"> |
| 189 | + <img src="https://raw.githubusercontent.com/kala13x/libxutils/main/misc/mon.png" alt="alternate text"> |
190 | 190 | </p> |
191 | 191 |
|
192 | 192 | `XTOP` is `HTOP` like performance monitor that supports to monitor CPU, memory, and network traffic into a single window. In addition, it has powerful `REST API` client/server mode and much more. |
|
0 commit comments