Previous Next Contents Index Doc Set Home


Preface


This manual describes:

The information is presented as a series of articles, each covering a specific transition topic. These articles were originally written for an in-house AT&T newsletter by David Prosser, Distinguished Member of Technical Staff, AT&T Bell Laboratories. Comments by Vijay Tatkar and Walter Nielsen of Sun Microsystems, Inc. have also been incorporated.

Appendix A, "K&R Sun C / Sun ANSI C Differences," contains much of the information from these articles in tabular form.

For more information on programming in ANSI C, refer to the following manuals:

We recommend two texts for programmers new to the C language: Kernighan and Ritchie (hereinafter referred to as K&R), The C Language, Second Edition, 1988, Prentice-Hall; Harbison and Steele, C: A Reference Manual, Second Edition, 1987, Prentice-Hall. For implementation-specific details not covered in this book, refer to the Application Binary Interface for your machine.


Typographic Conventions

The following table describes the typographic conventions and symbols used in this book.

Table P-1 Typographic Conventions

Typeface or
Symbol

Meaning
Examples

AaBbCc123

Names of commands, files, and directories; on-screen computer output

Edit your .login file.
Use ls -a to list all files.
system% You have mail.

AaBbCc123

User input, contrasted with on-screen computer output

system% su
password:

AaBbCc123

Command-line placeholder: replace with a real name or value

To delete a file, type rm filename.

AaBbCc123

Book titles, new words or terms, or words to be emphasized

Read Chapter 6 in User's Guide.
These are called class options.
You must be root to do this.

Code samples are included in boxes and may display the following:

%

C shell prompt

system%

$

Bourne shell prompt

system$

#

Superuser prompt, either shell

system#


Previous Next Contents Index Doc Set Home