chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / crt.h
index ca3fc00fc9d53797c31ea89811a73e7a2734cb02..002f67fe4d8e650d0deb65997a895cb140b8837e 100644 (file)
--- a/src/crt.h
+++ b/src/crt.h
@@ -12,6 +12,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2008/02/06 11:30:37  james
+ * *** empty log message ***
+ *
  * Revision 1.2  2008/02/04 20:23:55  james
  * *** empty log message ***
  *
 #define CRT_ATTR_BLINK    0x4
 #define CRT_ATTR_BOLD     0x8
 
-typedef struct {
-       uint8_t chr;
-       uint8_t attr;
+typedef struct
+{
+  uint8_t chr;
+  uint8_t attr;
 } CRT_CA;
 
-typedef struct {
-       int x;
-       int y;
+typedef struct
+{
+  int x;
+  int y;
 } CRT_Pos;
 
 
-typedef struct {
-       CRT_CA screen[CRT_CELS];
-       CRT_Pos pos;
-       int hide_cursor;
+typedef struct
+{
+  CRT_CA screen[CRT_CELS];
+  CRT_Pos pos;
+  int hide_cursor;
 } CRT;
 
 
-static inline crt_ca_cmp(CRT_CA a,CRT_CA b) {
-       return memcmp(&a,&b,sizeof(a));
+static inline
+crt_ca_cmp (CRT_CA a, CRT_CA b)
+{
+  return memcmp (&a, &b, sizeof (a));
 }
 
 #endif /* __CRT_H__ */