Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
- fwrite

A work in progress by [@ujjwal-kr](https://github.com/ujjwal-kr)