I haven't used C in a long time. What's going on here?
wOCR.c:8: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘.’ token
wOCR.c:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘.’ token
on this code:
struct wOCR_matchGrid {
  char character;
  int * data;
};
struct wOCR_matchGrid alphaMatch[26];
alphaMatch[0].character = 'A'; /*8*/
alphaMatch[0].data = {         /*9*/
                     0, 1, 0,
                     1, 0, 1,
                     1, 1, 1,
                     1, 0, 1   
                     };