4.3BSD/usr/doc/ps1/00.contents

.\" Copyright (c) 1986 Regents of the University of California.
.\" All rights reserved.  The Berkeley software License Agreement
.\" specifies the terms and conditions for redistribution.
.\"
.\"	@(#)00.contents	5.2 (Berkeley) 5/10/86
.\"
.OH '''PS1 Contents'
.EH 'PS1 Contents'''
.TL
UNIX Programmer's Supplementary Documents, Volume 1 (PS1)
.sp
\s-24.3 Berkeley Software Distribution, Virtual \s-2VAX\s+2\-11 Version\s+2
.sp
\fRApril, 1986\fR
.PP
These two volumes contain documents which supplement the manual pages in
.I
The
.UX
Programmer's Reference Manual
.R
for the Virtual \s-2VAX\s0-11 version of the system as distributed by U.C.
Berkeley.
.SH
Languages in common use (other languages in Programmer's Supplement, volume 2)
.IP
.tl 'The C Programming Language \- Reference Manual''PS1:1'
.QP
Official statement of the syntax of C.
Should be supplemented by ``The C Programming Language,''
B.W. Kernighan and D.M. Ritchie, Prentice-Hall, 1978, that
contains a tutorial introduction and many examples.

.IP
.tl 'A Portable Fortran 77 Compiler''PS1:2'
.QP
A revised version of the document which originally appeared in
Volume 2b of the Bell Labs documentation;
this version reflects the ongoing work at Berkeley.

.IP
.tl 'Introduction to the f77 I/O Library''PS1:3'
.QP
A description of the revised input/output library for Fortran 77, 
reflecting work carried out at Berkeley.

.IP
.tl 'Berkeley Pascal User\'s Manual''PS1:4'
.QP
An implementation of this language popular for learning to program.

.IP
.tl 'Berkeley Vax/UNIX Assembler Reference Manual''PS1:5'
.QP
The usage and syntax of the assembler;  useful mostly by compiler writers.

.IP
.SH
General Reference
.IP
.tl 'Berkeley Software Architecture Manual (4.3 Edition)''PS1:6'
.QP
A concise and terse description of the system call interface
provided in Berkeley Unix, as revised for 4.3BSD.
This will never be a best seller.

.IP
.tl 'An Introductory 4.3BSD Interprocess Communication Tutorial''PS1:7'
.QP
How to write programs that use the Interprocess Communication Facilities
of 4.3BSD.

.IP
.tl 'An Advanced 4.3BSD Interprocess Communication Tutorial''PS1:8'
.QP
The reference document (with some examples) for the Interprocess Communication 
Facilities of 4.3BSD.

.SH
Programming Tools
.IP
.tl 'Lint, A C Program Checker''PS1:9'
.QP
Checks C programs for syntax errors, type violations, portability problems,
and a variety of probable errors.

.IP
.tl 'A Tutorial Introduction to ADB''PS1:10'
.QP
How to debug programs using the \fIadb\fP debugger.
For hints on the use of ADB for debugging the
.UX
kernel, see ``Using ADB to Debug the Kernel'', SMM:3

.IP
.tl 'Debugging with dbx''PS1:11'
.QP
How to debug programs without having to know much about machine language.

.IP
.tl 'Make \- A Program for Maintaining Computer Programs''PS1:12'
.QP
Indispensable tool for making sure large programs are properly
compiled with minimal effort. 

.IP
.tl 'An Introduction to the Revision Control System''PS1:13'
.QP
RCS is a user-contributed tool for working together with other people
without stepping on each other's toes.
An alternative to \fIsccs\fR for controlling software changes.

.IP
.tl 'An Introduction to the Source Code Control System''PS1:14'
.QP
A useful introductory article for those users with
installations licensed for SCCS.

.IP
.tl 'YACC: Yet Another Compiler-Compiler''PS1:15'
.QP
Converts a BNF specification of a language and semantic actions
written in C into a compiler for that language.

.IP
.tl 'LEX \- A Lexical Analyzer Generator''PS1:16'
.QP
Creates a recognizer for a set of regular expressions:
each regular expression can be followed by arbitrary C code
to be executed upon finding the regular expression.

.IP
.tl 'The M4 Macro Processor''PS1:17'
.QP
M4 is a macro processor useful in its own right and as a
front-end for C, Ratfor, and Cobol.

.SH
Programming Libraries
.IP
.tl 'Screen Updating and Cursor Movement Optimization''PS1:18'
.QP
Describes the \fIcurses\fP package, an aid for writing screen-oriented,
terminal-independent programs.