You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  1. /* snf_match.h
  2. **
  3. ** (C) Copyright 2006 ARM Research Labs, LLC.
  4. **
  5. ** 20060121_M
  6. **
  7. ** The Engine provides detailed match results using this structure.
  8. */
  9. #ifndef _ARM_snf_match
  10. #define _ARM_snf_match
  11. struct snf_match {
  12. char flag;
  13. int symbol;
  14. int ruleid;
  15. int index;
  16. int endex;
  17. };
  18. #endif