Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamilturek/libextras
https://github.com/kamilturek/libextras
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamilturek/libextras
- Owner: kamilturek
- Created: 2023-10-07T20:46:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-07T20:55:04.000Z (about 1 year ago)
- Last Synced: 2024-05-01T16:07:05.558Z (6 months ago)
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libextras
A C library with general purpose utility functions.
## Installation
```sh
make install
```## Usage
1. Include the header file.
```c
// main.c
#includeint main(int argc, char const *argv[]) {
return startswith("Hello World", "Hell");
}
```2. Link the library.
```sh
gcc -o main main.c -lextras
```