Align backspace character [cosmetic]

This commit is contained in:
John Marshall 2023-09-21 08:11:08 +12:00
parent f0d6c0fffc
commit e90f6e8f33

2
kseq.h
View File

@ -107,7 +107,7 @@ typedef struct __kstring_t {
if (ks->end == -1) { ks->is_eof = 1; return -3; } \
} else break; \
} \
if (delimiter == KS_SEP_LINE) { \
if (delimiter == KS_SEP_LINE) { \
unsigned char *sep = memchr(ks->buf + ks->begin, '\n', ks->end - ks->begin); \
i = sep != NULL ? sep - ks->buf : ks->end; \
} else if (delimiter > KS_SEP_MAX) { \