1 #include "../libzmpeg3.h"
8 char string[zmpeg3_t::STRLEN];
10 if(!(proc = fopen(zmpeg3_t::PROC_CPUINFO, "r"))) {
11 perrs("%s",zmpeg3_t::PROC_CPUINFO);
15 while( !feof(proc) && fgets(string, sizeof(string), proc) ) {
16 /* Get the flags line */
17 if(!strncasecmp(string, "flags", 5)) {
18 result = !strstr(string, "mmx") ? 0 : 1;