gozeloglu / gozeloglu/safe_strn
Add string type
Open
enhancement
- Dominant language
- C
- Stars
- 1
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Add a string type with `struct` and handle the string operations in functions.
Possible `struct` definition:
```C
struct sf_str {
char *str;
size_t alloc_len;
size_t len;
};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.