diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-26 10:37:43 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-11-26 10:37:43 -0500 |
commit | 50f42a6697a6dedbfd4f0737568e816077010253 (patch) | |
tree | 83c989924a97f809355e6d130b13db6ae5998e89 /src/c/quikr.h | |
parent | fc0ef29e1aa74b13dc1f179ac755b8bf784af9bb (diff) |
some spacing changes
Diffstat (limited to 'src/c/quikr.h')
-rw-r--r-- | src/c/quikr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/quikr.h b/src/c/quikr.h index 3c0e68f..da78297 100644 --- a/src/c/quikr.h +++ b/src/c/quikr.h @@ -1,9 +1,10 @@ #define MATRIX_REVISION 0 #define pow_four(x) ( (unsigned long long)1 << (x * 2 ) ) - +#define str_eq(s1,s2) (!strcmp ((s1),(s2))) struct matrix { unsigned long long sequences; unsigned int kmer; double *matrix; char **headers; }; + |