https://github.com/benbjohnson/bandicoot
A crash reporter library for C applications.
https://github.com/benbjohnson/bandicoot
Last synced: 10 months ago
JSON representation
A crash reporter library for C applications.
- Host: GitHub
- URL: https://github.com/benbjohnson/bandicoot
- Owner: benbjohnson
- License: mit
- Created: 2012-12-26T22:32:28.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-12-27T00:17:11.000Z (about 13 years ago)
- Last Synced: 2025-03-15T23:56:14.402Z (10 months ago)
- Language: C
- Homepage:
- Size: 117 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Bandicoot
=========
## Overview
Bandicoot is a crash reporting library that is inspired by the Redis crash reporting system.
This library was extracted from Redis and generalized so that any application can use it.
It is BSD licensed so feel free to customize it and redistribute it.
To use it, simply include the header file and initialize it:
#include
int main() {
// Initialize bandicoot at the beginning.
bandicoot_init();
// Run your code here!
return 0;
}
When your code breaks then you should see a bug report dumped to `STDERR` with a backtrace and register values.
## Contributing
If you find bugs or have features you want to add, please submit a GitHub ticket for them.