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

https://github.com/aceinetx/c-snowterm

Rewrite of python-snowterm in ANSI C
https://github.com/aceinetx/c-snowterm

Last synced: about 1 year ago
JSON representation

Rewrite of python-snowterm in ANSI C

Awesome Lists containing this project

README

          

# c-snowterm
A rewrite of [python-snowterm](https://github.com/valignatev/python-snowterm) in ANSI C, with a fix regarding window size

## Compiling and running
### Linux (assuming ncurses, gcc and make are installed)
```console
$ make
...
$ ./c-snowterm
```
### Windows (mingw ucrt64, assuming gcc and make are installed)
```console
$ pacman -S mingw-w64-ucrt-x86_64-ncurses patch
...
$ patch makefile < mingw.patch
patching file makefile
$ make
...
$ ./c-snowterm
```