gcc 451 B

12345678910111213141516
  1. #------------------------------------------------------------------------------
  2. # gcc: file(1) magic for GCC special files
  3. #
  4. 0 string gpch GCC precompiled header
  5. # The version field is annoying. It's 3 characters, not zero-terminated.
  6. >5 byte x (version %c
  7. >6 byte x \b%c
  8. >7 byte x \b%c)
  9. # 67 = 'C', 111 = 'o', 43 = '+', 79 = 'O'
  10. >4 byte 67 for C
  11. >4 byte 111 for Objective C
  12. >4 byte 43 for C++
  13. >4 byte 79 for Objective C++