xref: /minix3/external/bsd/file/dist/magic/magdir/sccs (revision 835f6802383ea18ff9311123031e44be87fb502a)
1ef01931fSBen Gras
2ef01931fSBen Gras#------------------------------------------------------------------------------
3*835f6802SDirk Vogt# $File: sccs,v 1.6 2009/09/19 16:28:12 christos Exp $
4ef01931fSBen Gras# sccs:  file(1) magic for SCCS archives
5ef01931fSBen Gras#
6ef01931fSBen Gras# SCCS archive structure:
7ef01931fSBen Gras# \001h01207
8ef01931fSBen Gras# \001s 00276/00000/00000
9ef01931fSBen Gras# \001d D 1.1 87/09/23 08:09:20 ian 1 0
10ef01931fSBen Gras# \001c date and time created 87/09/23 08:09:20 by ian
11ef01931fSBen Gras# \001e
12ef01931fSBen Gras# \001u
13ef01931fSBen Gras# \001U
14ef01931fSBen Gras# ... etc.
15ef01931fSBen Gras# Now '\001h' happens to be the same as the 3B20's a.out magic number (0550).
16ef01931fSBen Gras# *Sigh*. And these both came from various parts of the USG.
17ef01931fSBen Gras# Maybe we should just switch everybody from SCCS to RCS!
18ef01931fSBen Gras# Further, you can't just say '\001h0', because the five-digit number
19ef01931fSBen Gras# is a checksum that could (presumably) have any leading digit,
20ef01931fSBen Gras# and we don't have regular expression matching yet.
21ef01931fSBen Gras# Hence the following official kludge:
22ef01931fSBen Gras8	string		\001s\ 			SCCS archive data
23