Files

21 lines
774 B
Markdown
Raw Permalink Normal View History

2024-04-10 12:21:46 +08:00
# utilities
This is a diverse component library that provides some c/ C ++ base libraries.
```bash
.
2024-04-26 09:45:12 +08:00
├── SConstruct
2024-04-10 12:21:46 +08:00
├── include
│ ├── any.hpp // c++ 11 implementation of any class
│ ├── json.hpp // c ++ json lib
│ ├── run_time.h // Non-standard time measurement macro implementation
│ ├── sample_log.h // Simple log print
│ └── thread_safe_list.h // A thread-safe c++ list implementation
├── Kconfig
├── party
│ ├── base64 // base64 lib
│ ├── easymsgcpp // easymsgcpp lib, log print
│ ├── fmt // c++ fmt lib
│ ├── ini // ini configuration file parsing library
```