Coccinelle release 1.0.0-rc4
[bpt/coccinelle.git] / tests / define_param.res
1 static int
2 atari_proc_infos(unsigned char *nvram, char *buffer, int *len,
3 off_t *begin, off_t offset, int size)
4 {
5 for (i = ARRAY_SIZE(boot_prefs) - 1; i >= 0; --i) {
6 if (nvram[1] == boot_prefs[i].val) {
7 PRINT_PROC("%s\n", boot_prefs[i].name);
8 break;
9 }
10 }
11 }
12