Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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