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

https://github.com/mnito/elapsed

Compact elapsed time formatting and encoding library
https://github.com/mnito/elapsed

clock elapsed encoding example formatting monotonic stopwatch time

Last synced: 8 months ago
JSON representation

Compact elapsed time formatting and encoding library

Awesome Lists containing this project

README

          

# Compact Elapsed Time Formatting and Encoding Library

### To compile library:

```shell
cc -Wall -pedantic -O3 -c elapsed.c -o elapsed.o
```

### To compile stopwatch example:

```shell
cc -Wall -pedantic -O3 -I. ./examples/stopwatch.c elapsed.o -o stopwatch
```

### To run stopwatch example:

```shell
./stopwatch
```

Press enter to record splits!

## License

Dual licensed under the MIT License and Unlicense. See LICENSE and UNLICENSE
files for full text of these licenses.

## Original Author

Michael P. Nitowski