Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmcph4/tinyscstr
The tiny safe C strings library
https://github.com/jmcph4/tinyscstr
c library safety string string-library string-manipulation strings
Last synced: 27 days ago
JSON representation
The tiny safe C strings library
- Host: GitHub
- URL: https://github.com/jmcph4/tinyscstr
- Owner: jmcph4
- License: mit
- Created: 2016-11-30T14:05:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-30T14:06:27.000Z (about 8 years ago)
- Last Synced: 2024-11-06T01:42:00.882Z (3 months ago)
- Topics: c, library, safety, string, string-library, string-manipulation, strings
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tinyscstr #
---The **t**iny **s**afe **C** **str**ing library. Strings are immutable at this stage (by that I mean concatenation doesn't modify supplied strings).
Basically, we have `scstr` type which just tracks size (*including terminating `NUL` byte*) and contents of the string, with some memory management abstractions on top.