您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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