update README

This commit is contained in:
Odweta
2023-12-08 10:57:20 +01:00
parent 8a498d4327
commit 597e347ad8
+12 -1
View File
@@ -1,6 +1,6 @@
# OdwetaLibC
I got bored with having to use complicated checking and stuff when working with files and arrays in C, so I implemented a new `file_t` struct which can load the contents of a file into a dynamically allocated array (yes, there is an implmentation of those here as well... (`vector_t` struct)). The struct also stores the number of lines the file has.
I got bored with having to use complicated checking and stuff when working with files and arrays in C, so I implemented a new `file_t` struct which can load the contents of a file into a dynamically allocated array (yes, there is an implementation of those here as well... (`vector_t` struct)). The struct also stores the number of lines the file has.
## Files
@@ -32,3 +32,14 @@ I got bored with having to use complicated checking and stuff when working with
1. Insertion of a vector into another vector
+ You tell me
## Installation
`git clone https://gitlab.com/Odweta/odwetalibc.git`
`cd odwetalibc`
`make install`
#### Run demo
`make && ./demo`