repo.or.cz
/
vspell.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Moved tests to utils. Added .gitignore
[vspell.git]
/
libvspell
/
debug.h
blob
4afcdf14a79f3f9623ed9c24f246c744c569b0d7
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