Re: NGX_INT32_LEN and NGX_INT64_LEN

2013-12-03 Thread Dean Pucsek
On December 3, 2013 at 4:38:18 AM, Maxim Dounin (mdou...@mdounin.ru) wrote: Hello! On Mon, Dec 02, 2013 at 03:44:53PM -0800, Dean Pucsek wrote: Hello,   While reading through the source code for nginx I came across the following two lines in ngx_config.h    #define NGX_INT32_LEN

NGX_INT32_LEN and NGX_INT64_LEN

2013-12-02 Thread Dean Pucsek
Hello, While reading through the source code for nginx I came across the following two lines in ngx_config.h  #define NGX_INT32_LEN   (sizeof(-2147483648) - 1) #define NGX_INT64_LEN   (sizeof(-9223372036854775808) - 1) I was wondering if someone could explain the intention of these lines to me