Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ujjwal-kr/cvm
Experimenting with the C runtime environment, while trying to reimplement parts of glibc because why not.
https://github.com/ujjwal-kr/cvm
Last synced: about 1 month ago
JSON representation
Experimenting with the C runtime environment, while trying to reimplement parts of glibc because why not.
- Host: GitHub
- URL: https://github.com/ujjwal-kr/cvm
- Owner: ujjwal-kr
- Created: 2023-11-10T15:27:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-28T13:45:55.000Z (12 months ago)
- Last Synced: 2023-12-28T14:35:12.130Z (12 months ago)
- Language: C
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CVM
Experimenting with the C runtime environment, while trying to reimplement most used functions of GLIBC because why not.
## TODO
### Memory Allocation [DONE]
- malloc
- calloc
- realloc
- free### IO
- printf
- scanf## Strings
- strcpy
- strlen
- strcmp### File IO
- fopen
- fclose
- fread
- fwriteA work in progress by [@ujjwal-kr](https://github.com/ujjwal-kr)