Skip to content
Snippets Groups Projects
display.c 160 B
Newer Older
  • Learn to ignore specific revisions
  • KosmX's avatar
    KosmX committed
    typedef struct block  //struct stores 2 chars and it's color:D
    {
        int c1;
        int c2;
        struct{
            int fg : 3;
            int bg : 3;
        }color;
    
    KosmX's avatar
    :D
    KosmX committed
    }block;