Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/friendbear/safe-zero-copy-parsers-c-lang-ver
C Sample Code
https://github.com/friendbear/safe-zero-copy-parsers-c-lang-ver
c sample-code
Last synced: about 1 month ago
JSON representation
C Sample Code
- Host: GitHub
- URL: https://github.com/friendbear/safe-zero-copy-parsers-c-lang-ver
- Owner: friendbear
- Created: 2023-11-25T05:05:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-25T06:15:04.000Z (about 1 year ago)
- Last Synced: 2024-05-02T05:11:50.039Z (8 months ago)
- Topics: c, sample-code
- Language: Makefile
- Homepage: https://itnext.io/rust-the-joy-of-safe-zero-copy-parsers-8c8581db8ab2
- Size: 933 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Alt text](image-1.png)
# Safe Zero Copy Parsers
## C Langage Version
> This is Sample Coode
### Change me
```c
void get_data(uint8_t *buffer) {
const uint8_t data[] = {255, 't', 'e', 's', 't'};
memcpy(buffer, data, sizeof(data));
}
```---
Link: