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
- Host: GitHub
- URL: https://github.com/aceinetx/c-snowterm
- Owner: aceinetx
- Created: 2025-06-27T19:37:03.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-27T20:24:39.000Z (about 1 year ago)
- Last Synced: 2025-06-27T21:23:34.309Z (about 1 year ago)
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```