RFR: JDK-8074579 Use more efficient and readable way of checking PKZIP signatures

Martin Buchholz martinrb at google.com
Sat Mar 7 05:50:07 UTC 2015


Err...

#define PKZIP_SIGNATURE_AT(p, b2, b3) \
  (((p)[0] == 'P') & ((p)[1] == 'K') & ((p)[2] == b2) & ((p)[3] == b3))



More information about the core-libs-dev mailing list