Skip to content

Commit

Permalink
create sc for utility functions
Browse files Browse the repository at this point in the history
  • Loading branch information
tezc committed Feb 6, 2021
1 parent ed0e154 commit 4286554
Show file tree
Hide file tree
Showing 15 changed files with 267 additions and 413 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ add_subdirectory(ini)
add_subdirectory(linked-list)
add_subdirectory(logger)
add_subdirectory(map)
add_subdirectory(math)
add_subdirectory(memory-map)
add_subdirectory(mutex)
add_subdirectory(option)
add_subdirectory(queue)
add_subdirectory(perf)
add_subdirectory(rc4)
add_subdirectory(sc)
add_subdirectory(signal)
add_subdirectory(socket)
add_subdirectory(string)
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ CI runs on Linux, MacOS, FreeBSD and Windows with gcc, clang and msvc.
| **[linked list](linked-list)** | Intrusive linked list |
| **[logger](logger)** | Logger |
| **[map](map)** | A high performance open addressing hashmap |
| **[math](math)** | Utility functions |
| **[memory map](memory-map)** | Mmap wrapper for Posix and Windows |
| **[mutex](mutex)** | Mutex wrapper for Posix and Windows |
| **[option](option)** | Cmdline argument parser. Very basic one |
| **[perf](perf)** | Benchmark utility to get performance counters info via perf_event_open() |
| **[queue](queue)** | Generic queue which can be used as dequeue/stack/list as well |
| **[rc4](rc4)** | Random number generator |
| **[sc](sc)** | Utility functions |
| **[signal](signal)** | Signal handler & signal safe snprintf (handling CTRL+C, printing backtrace on crash etc) |
| **[socket](socket)** | Pipe, TCP sockets, Epoll/Kqueue/WSAPoll for Posix and Windows |
| **[string](string)** | Length prefixed, null terminated C strings. |
Expand Down
132 changes: 0 additions & 132 deletions math/math_test.c

This file was deleted.

93 changes: 0 additions & 93 deletions rc4/CMakeLists.txt

This file was deleted.

3 changes: 0 additions & 3 deletions rc4/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions rc4/rc4_example.c

This file was deleted.

44 changes: 0 additions & 44 deletions rc4/rc4_test.c

This file was deleted.

65 changes: 0 additions & 65 deletions rc4/sc_rc4.c

This file was deleted.

Loading

0 comments on commit 4286554

Please sign in to comment.