summaryrefslogtreecommitdiff
path: root/src/htsbase.h
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-05-14 19:20:14 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-05-14 19:20:14 +0000
commit0573b166b2aa2ee40be1a328636cb539d96aeeac (patch)
tree60225c1335ff26c5e4f29bc7043548daa44c7d73 /src/htsbase.h
parenteaef7eb1f7ae092d73eeffa245ab418d70748fdf (diff)
Merge sources from windows-1252 to utf-8
Diffstat (limited to 'src/htsbase.h')
-rw-r--r--src/htsbase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htsbase.h b/src/htsbase.h
index ef01eba..d850bd9 100644
--- a/src/htsbase.h
+++ b/src/htsbase.h
@@ -91,11 +91,11 @@ extern "C" {
#define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
#endif
-// teste égalité de 2 chars, case insensitive
+// teste égalité de 2 chars, case insensitive
#define hichar(a) ((((a)>='a') && ((a)<='z')) ? ((a)-('a'-'A')) : (a))
#define streql(a,b) (hichar(a)==hichar(b))
-// caractère maj
+// caractère maj
#define isUpperLetter(a) ( ((a) >= 'A') && ((a) <= 'Z') )