diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2007-01-02 23:39:40 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2007-01-02 23:39:40 (GMT) |
commit | 16cdeeca7012af9595b161d13ef388051201b2d6 (patch) | |
tree | fe1ed7354a514a4e4ee8d144aaeb2c5a791f2211 /xlib/xbytes.h | |
parent | 24094b6d99ac2237ecedb34ca335ede7ca31dc46 (diff) | |
download | tk-16cdeeca7012af9595b161d13ef388051201b2d6.zip tk-16cdeeca7012af9595b161d13ef388051201b2d6.tar.gz tk-16cdeeca7012af9595b161d13ef388051201b2d6.tar.bz2 |
Made the generic fake-X11 glue layer abide by the formatting rules of the core.
Diffstat (limited to 'xlib/xbytes.h')
-rw-r--r-- | xlib/xbytes.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/xlib/xbytes.h b/xlib/xbytes.h index 46be124..178d7ad 100644 --- a/xlib/xbytes.h +++ b/xlib/xbytes.h @@ -5,19 +5,18 @@ * * Copyright (c) 1995 Sun Microsystems, Inc. * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. + * See the file "license.terms" for information on usage and redistribution of + * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: xbytes.h,v 1.2 1998/09/14 18:24:02 stanton Exp $ + * RCS: @(#) $Id: xbytes.h,v 1.3 2007/01/02 23:39:40 dkf Exp $ */ #ifndef _XBYTES #define _XBYTES /* - * The bits in a byte can be reversed so the least significant becomes - * the most significant by indexing xBitReverseTable with the byte - * to be reversed. + * The bits in a byte can be reversed so the least significant becomes the + * most significant by indexing xBitReverseTable with the byte to be reversed. */ static unsigned char xBitReverseTable[256] = { @@ -56,3 +55,11 @@ static unsigned char xBitReverseTable[256] = { }; #endif /* _XBYTES */ + +/* + * Local Variables: + * mode: c + * c-basic-offset: 4 + * fill-column: 78 + * End: + */ |