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: 2 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-28T13:45:55.000Z (over 1 year ago)
- Last Synced: 2025-01-15T10:27:45.858Z (4 months ago)
- Language: C
- Homepage:
- Size: 34.2 KB
- Stars: 1
- 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)