diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-04-27 16:52:54 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-04-27 16:52:54 +0000 |
commit | d46e835fc231a9911963fcc9b465fc3d99f18397 (patch) | |
tree | 3cef8aba3b91065a3bf81604fbaa1163d0bb9fbb /src | |
parent | 1f6b64f81a77f6fc2fdb0d2c46afbe364c2c7fdb (diff) |
Removed duplicate is_realspace definition
Diffstat (limited to 'src')
-rw-r--r-- | src/htsalias.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/htsalias.c b/src/htsalias.c index 0f6c9f1..0f8a41e 100644 --- a/src/htsalias.c +++ b/src/htsalias.c @@ -40,15 +40,6 @@ Please visit our Website: http://www.httrack.com #include "htslib.h" #define _NOT_NULL(a) ( (a!=NULL) ? (a) : "" ) -// #define is_realspace(c) (strchr(" \x0d\x0a\x09\x0b\x0c",(c))!=NULL) -#define is_realspace(c) ( \ - (c) == ' ' \ - || (c) == '\x09' \ - || (c) == '\x0a' \ - || (c) == '\x0b' \ - || (c) == '\x0c' \ - || (c) == '\x0d' \ -) // COPY OF cmdl_ins in htsmain.c // Insert a command in the argc/argv |