-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from edilson258/dev
feat: impl vector_remove fn
- Loading branch information
Showing
2 changed files
with
56 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# C Things Framework | ||
|
||
[Learn More](https://github.com/edilson258/cthings) | ||
|
||
## Usage from release | ||
|
||
This section will guide on how to use cthings from release package. | ||
|
||
1. Download you platform release [here](https://github.com/edilson258/cthings/releases/tag/v0.1.0) | ||
2. Unzip to get the `cthings` folder | ||
3. Include the `cthings/include/cthings.h` on your source file | ||
|
||
- `main.c` | ||
```C | ||
#include "cthings/include/cthings.h" | ||
|
||
int main(void) { | ||
// Your trash code goes here | ||
return 0; | ||
} | ||
``` | ||
4. Build your code into <b>object</> file | ||
```shell | ||
clang -c -o main.o main.c | ||
``` | ||
|
||
5. Link your trash code with my trash code | ||
```shell | ||
clang -o main main.o -lcthings -L./cthings/lib | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters