Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
rgbyte.c
Go to the documentation of this file.00001 
00002 #include "mrilib.h"
00003 
00004 typedef struct { byte r,g,b ; } rgbyte ;
00005 
00006 int main( int argc , char * argv[] )
00007 {
00008    rgbyte fred ;
00009    int ii = sizeof(fred) ;
00010    printf("sizeof(rgbyte) = %d\n",ii) ;
00011    exit(0);
00012 }