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

https://github.com/stijncaerts/countdown-c

countdown to New Year, coded in C using the ncurses library
https://github.com/stijncaerts/countdown-c

countdown ncurses-library

Last synced: 16 days ago
JSON representation

countdown to New Year, coded in C using the ncurses library

Awesome Lists containing this project

README

          

# Countdown in C
This project is a small countdown-timer to New Year, coded in C using the ncurses library.

## Features
- automatically selects the next year transition, based on the system time
- countdown in the format DDD HH:MM:SS
- format changes as the time ticks away, eg. HH:MM:SS to MM:SS to SS to S
- runs in the terminal
- timer in ASCII-art
- coded in C
- uses the ncurses library
- makefile included

## How to use?
1. compile the code, using the make file, or enter the compile command manually:
`make` or `gcc -o countdown countdown.c -lncurses -std=c99`
2. run the compiled executable:
`./countdown`

## License
See the [LICENSE](LICENSE) file for license rights and limitations (MIT).