// Declare your local variables here
volatile unsigned char a[13]; //104 Bits
volatile unsigned char byte,xbit,result; //Helper Variables
volatile unsigned char bitcount=67; //Adressed Bit
....
....
byte=bitcount/8;
xbit=bitcount%8;
if((a[byte]&(1<<xbit))==0)
{
result=0;
}
else
{
result=1;
}
};