Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ ar(5) — RISC iX 1.2

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

ar(1)

ld(1)

nm(1)

AR(5)  —  UNIX Programmer’s Manual

NAME

ar − archive (library) file format

SYNOPSIS

#include <ar.h>

DESCRIPTION

The archive command ar combines several files into one.  Archives are used mainly as libraries to be searched by the link-editor ld. 

A file produced by ar has a magic string at the start, followed by the constituent files, each preceded by a file header.  The magic number and header layout as described in the include file are:

/∗
\ ∗ $Header: /smsa/bsd:include/ar.h:bsd  1.4  $
\ ∗ $Source: /smsa/bsd:include/ar.h: $
\ ∗
\ ∗ Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
\ ∗/
/∗
\ ∗ Copyright (c) 1980 Regents of the University of California.
\ ∗ All rights reserved.  The Berkeley software License Agreement
\ ∗ specifies the terms and conditions for redistribution.
\ ∗
\ ∗@(#)ar.h5.1 (Berkeley) 5/30/85
\ ∗/
 #ifndef __ar_h
#define __ar_h
 #defineARMAG"!<arch>\n"
#defineSARMAG8
 #defineARFMAG"‘\n"
 struct ar_hdr {
charar_name[16];
charar_date[12];
charar_uid[6];
charar_gid[6];
charar_mode[8];
charar_size[10];
charar_fmag[2];
};
 #endif/∗__ar_h∗/
 /∗ EOF ar.h ∗/

The name is a blank-padded string.  The ar_fmag field contains ARFMAG to help verify the presence of a header.  The other fields are left-adjusted, blank-padded numbers.  They are decimal except for ar_mode, which is octal. The date is the modification date of the file at the time of its insertion into the archive.

Each file begins on a even (0 mod 2) boundary; a new-line is inserted between files if necessary.  Nevertheless the size given reflects the actual size of the file exclusive of padding. 

There is no provision for empty areas in an archive file. 

The encoding of the header is portable across machines.  If an archive contains printable files, the archive itself is printable. 

SEE ALSO

ar(1), ld(1), nm(1)

BUGS

File names lose trailing blanks.  Most software dealing with archives takes even an included blank as a name terminator. 

7th Edition  —  Revision 1.2 of 19/10/88

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026