RawC is an educational remake of C standard libraries
- stdio.h
- ctype.h
- stdbool.h
- string.h
- NONE
- math.h
- stdlib.h
- Clone the repository
git clone https://github.com/ruxixa/RawC.git
- Copy the src folder content to your project include folder
- Include RawC libraries
An example usage of stdio.h remake
#include <include/rawc/_stdio.h>
int main() {
int num;
_scanf("Enter a number: %d", &num);
_printf("You entered: %d\n", num);
_FILE* file = _fopen("test", "w+");
_fwrite("Hello, World!", 1, 13, file);
_fclose()
_exit(0);
}
You can find more about contributing here
All changes are being noted here