[10333] | 1 | # |
---|
| 2 | # $Id: Magiclines,v 1.1.1.1 1997-09-03 21:08:11 ghudson Exp $ |
---|
| 3 | # |
---|
| 4 | # Copyright 1993, Geoff Kuenning, Granada Hills, CA |
---|
| 5 | # All rights reserved. |
---|
| 6 | # |
---|
| 7 | # Redistribution and use in source and binary forms, with or without |
---|
| 8 | # modification, are permitted provided that the following conditions |
---|
| 9 | # are met: |
---|
| 10 | # |
---|
| 11 | # 1. Redistributions of source code must retain the above copyright |
---|
| 12 | # notice, this list of conditions and the following disclaimer. |
---|
| 13 | # 2. Redistributions in binary form must reproduce the above copyright |
---|
| 14 | # notice, this list of conditions and the following disclaimer in the |
---|
| 15 | # documentation and/or other materials provided with the distribution. |
---|
| 16 | # 3. All modifications to the source code must be clearly marked as |
---|
| 17 | # such. Binary redistributions based on modified source code |
---|
| 18 | # must be clearly marked as modified versions in the documentation |
---|
| 19 | # and/or other materials provided with the distribution. |
---|
| 20 | # 4. All advertising materials mentioning features or use of this software |
---|
| 21 | # must display the following acknowledgment: |
---|
| 22 | # This product includes software developed by Geoff Kuenning and |
---|
| 23 | # other unpaid contributors. |
---|
| 24 | # 5. The name of Geoff Kuenning may not be used to endorse or promote |
---|
| 25 | # products derived from this software without specific prior |
---|
| 26 | # written permission. |
---|
| 27 | # |
---|
| 28 | # THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS IS'' AND |
---|
| 29 | # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 30 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 31 | # ARE DISCLAIMED. IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS BE LIABLE |
---|
| 32 | # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
---|
| 33 | # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
---|
| 34 | # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
---|
| 35 | # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
---|
| 36 | # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
---|
| 37 | # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
---|
| 38 | # SUCH DAMAGE. |
---|
| 39 | # |
---|
| 40 | # The following lines can be inserted into /etc/magic or |
---|
| 41 | # /usr/lib/file/magic so that "file" will recognize ispell hash files. |
---|
| 42 | # On some systems, these lines will need modification. The most |
---|
| 43 | # common modifications involve turning the magic number into a 16-bit |
---|
| 44 | # integer (0x9602). Some systems (e.g., Ultrix) may require an extra |
---|
| 45 | # field to be added; see the documentation or comments for your magic |
---|
| 46 | # file for more information. |
---|
| 47 | # |
---|
| 48 | # $Log: not supported by cvs2svn $ |
---|
| 49 | # Revision 1.8 1995/01/08 23:23:52 geoff |
---|
| 50 | # Add comments that document minor variations in /etc/magic formats. |
---|
| 51 | # |
---|
| 52 | # Revision 1.7 1994/01/25 07:11:10 geoff |
---|
| 53 | # Get rid of all old RCS log lines in preparation for the 3.1 release. |
---|
| 54 | # |
---|
| 55 | # |
---|
| 56 | 0 short 0xffff9602 ispell hash file |
---|
| 57 | >2 short 0x00 - 8-bit, no capitalization, 26 flags |
---|
| 58 | >2 short 0x01 - 7-bit, no capitalization, 26 flags |
---|
| 59 | >2 short 0x02 - 8-bit, capitalization, 26 flags |
---|
| 60 | >2 short 0x03 - 7-bit, capitalization, 26 flags |
---|
| 61 | >2 short 0x04 - 8-bit, no capitalization, 52 flags |
---|
| 62 | >2 short 0x05 - 7-bit, no capitalization, 52 flags |
---|
| 63 | >2 short 0x06 - 8-bit, capitalization, 52 flags |
---|
| 64 | >2 short 0x07 - 7-bit, capitalization, 52 flags |
---|
| 65 | >2 short 0x08 - 8-bit, no capitalization, 128 flags |
---|
| 66 | >2 short 0x09 - 7-bit, no capitalization, 128 flags |
---|
| 67 | >2 short 0x0A - 8-bit, capitalization, 128 flags |
---|
| 68 | >2 short 0x0B - 7-bit, capitalization, 128 flags |
---|
| 69 | >2 short 0x0C - 8-bit, no capitalization, 256 flags |
---|
| 70 | >2 short 0x0D - 7-bit, no capitalization, 256 flags |
---|
| 71 | >2 short 0x0E - 8-bit, capitalization, 256 flags |
---|
| 72 | >2 short 0x0F - 7-bit, capitalization, 256 flags |
---|
| 73 | >4 short >0 and %d string characters |
---|