https://github.com/krgn/exceptions
Exceptions in C
https://github.com/krgn/exceptions
Last synced: 3 months ago
JSON representation
Exceptions in C
- Host: GitHub
- URL: https://github.com/krgn/exceptions
- Owner: krgn
- Created: 2015-08-29T14:05:20.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-29T14:09:19.000Z (almost 11 years ago)
- Last Synced: 2025-06-08T01:06:30.460Z (about 1 year ago)
- Language: C++
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Exceptions:
-----------
Tiny implementation of exception handling with `setjmp`/`longjmp`. A train
journey project outcome from a trip from Frankfurt to Berlin.
Inspired by
[ http://sevko.io/articles/exceptions-in-c/ ](http://sevko.io/articles/exceptions-in-c/)
Building & Running:
-------------------
```
gcc main.c -o example && ./example
```