1 /* arm_features.h -- check for ARM features. 2 * For conditions of distribution and use, see copyright notice in zlib.h 3 */ 4 5 #ifndef ARM_H_ 6 #define ARM_H_ 7 8 extern int arm_cpu_has_neon; 9 extern int arm_cpu_has_crc32; 10 11 void Z_INTERNAL arm_check_features(void); 12 13 #endif /* ARM_H_ */ 14