Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kamilturek/libextras


https://github.com/kamilturek/libextras

Last synced: 26 days ago
JSON representation

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
#include

int main(int argc, char const *argv[]) {
return startswith("Hello World", "Hell");
}
```

2. Link the library.

```sh
gcc -o main main.c -lextras
```