From 606eda045bc3608977648fb1de61d8e328984d30 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 25 Jun 2018 16:56:45 +0300 Subject: Removed '\r' and '\n' artifact macros. --- src/nxt_string.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/nxt_string.h') diff --git a/src/nxt_string.h b/src/nxt_string.h index e6d32fa6..5f82cca8 100644 --- a/src/nxt_string.h +++ b/src/nxt_string.h @@ -21,19 +21,6 @@ nxt_isdigit(c) \ ((u_char) ((c) - '0') <= 9) -#define NXT_CR (u_char) 13 -#define NXT_LF (u_char) 10 -#define NXT_CRLF "\x0d\x0a" -#define NXT_CRLF_SIZE nxt_length(NXT_CRLF) - - -#define NXT_LINEFEED_SIZE 1 - -#define \ -nxt_linefeed(p) \ - *p++ = NXT_LF - - #define \ nxt_strlen(s) \ strlen((char *) s) -- cgit