Moved tests to utils. Added .gitignore
[vspell.git] / libvspell / debug.h
blob4afcdf14a79f3f9623ed9c24f246c744c569b0d7
1 #ifndef __DEBUG_H__ // -*- mode: c++ -*-
2 #define __DEBUG_H__
3 #include <stdio.h>
4 #define ASSERT(i) if (!(i)) {fprintf(stderr,"Error at %d",__LINE__); exit(0);}
5 #endif