Changeset 6b5111a in mainline for console/screenbuffer.h


Ignore:
Timestamp:
2006-06-02T14:12:09Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b6de81
Parents:
37458472
Message:

Reworked styles in framebuffer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/screenbuffer.h

    r37458472 r6b5111a  
    6060}
    6161
     62static inline int style_same(style_t s1, style_t s2)
     63{
     64        return s1.fg_color == s2.fg_color && s1.bg_color == s2.bg_color;
     65}
     66
    6267
    6368int screenbuffer_putchar(screenbuffer_t *scr, char c);
Note: See TracChangeset for help on using the changeset viewer.