├── LICENSE ├── Makefile ├── README ├── auto_crash.c ├── auto_test.c ├── crash.c ├── crash.h ├── crash_msg.h ├── crashd.c ├── naive.c └── test.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/README -------------------------------------------------------------------------------- /auto_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/auto_crash.c -------------------------------------------------------------------------------- /auto_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/auto_test.c -------------------------------------------------------------------------------- /crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/crash.c -------------------------------------------------------------------------------- /crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/crash.h -------------------------------------------------------------------------------- /crash_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/crash_msg.h -------------------------------------------------------------------------------- /crashd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/crashd.c -------------------------------------------------------------------------------- /naive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/naive.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/em-and-m/libcrash/HEAD/test.c --------------------------------------------------------------------------------