1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

add comments for LF,CR

This commit is contained in:
winlin 2014-07-20 16:18:26 +08:00
parent c65a6b5d63
commit 8cd9be4fce

View file

@ -56,7 +56,10 @@ int64_t FILE_SIZE(int fd)
return pos;
}
// '\n'
#define LF (char)0x0a
// '\r'
#define CR (char)0x0d
bool is_common_space(char ch)