A New Input-Output Package

D. M. Ritchie

A new package of IO routines is available under the Unix system. It was designed with the following goals in mind.

  1. It should be similar in spirit to the earlier Portable Library, and, to the extent possible, be compatiblewith it. At the same time a few dubious design choices in the Portable Library will be corrected.


  2. It must be as efficient as possible, both in time and in space, so that there will be no hesitation in using it no matter how critical the application.


  3. It must be simple to use, and also free of the magic numbers and mysterious calls the use of which mars the understandability and portability of many programs using older packages.


  4. The interface provided should be applicable on all machines, whether or not the programs which implement it are directly portable to other systems, or to machines other than the PDP11 running a version of Unix.

It is intended that this package replace the Portable Library. Although it is not directly compatible, as discussed below, it is sufficiently similar that a set of relatively small, inexpensive adaptor routines exist which make it appear identical to the current Portable Library except in some very obscure details.

The most crucial difference between this package and the Portable Library is that the current offering names streams in terms of pointers rather than by the integers known as `file descriptors.' Thus, for example, the routine which opens a named file returns a pointer to a certain structure rather than a number; the routine which reads an open file takes as an argument the pointer returned from the open call.

General Usage

Each program using the library must have the line


#include 

which defines certain macros and variables. The library containing the routines is `/usr/lib/libS.a,' so the command to compile is


cc  . . .   -lS

All names in the include file intended only for internal use begin with an underscore ` ' to reduce the possi-bility of collision with a user name. The names intended to be visible outside the package are

stdin The name of the standard input file
stdout The name of the standard output file
stderr The name of the standard error file
EOF is actually -1, and is the value returned by the read routines on end-of-file or error.
NULL is a notation for the null pointer, returned by pointer-valued functions to indicate an error
FILE expands to `struct iob' and is a useful shorthand when declaring pointers to streams.
BUFSIZ is a number (viz. 512) of the size suitable for an IO buffer supplied by the user. See setbuf,below.
getc, getchar, putc, putchar, feof, ferror, fileno
are defined as macros. Their actions are described below; they are mentioned here to point outthat it is not possible to redeclare them and that they are not actually functions; thus, for example, they may not have breakpoints set on them.

The routines in this package, like the current Portable Library, offer the convenience of automatic buffer allocation and output flushing where appropriate. Absent, however, is the facility of changing the default input and output streams by assigning to `cin' and `cout.' The names `stdin,' stdout,' and `stderr' are in effect constants and may not be assigned to.

Calls

The routines in the library are in nearly one-to-one correspondence with those in the Portable Library. In several cases the name has been changed. This is an attempt to reduce confusion. If the attempt is judged to fail the names may be made identical even though the arguments may be different. The order of this list generally follows the order used in the Portable Library document.


FILE *fopen(filename, type)
char *filename, *type;

Fopen opens the file and, if needed, allocates a buffer for it. Filename is a character string specifying thename. Type is a character string (not a single character). It may be `"r",' `"w",' or `"a"' to indicate intent toread, write, or append. The value returned is a file pointer. If it is null the attempt to open failed.


FILE *freopen(filename, type, ioptr)
char *filename, *type;
FILE *ioptr;

The stream named by ioptr is closed, if necessary, and then reopened as if by If the attempt to open fails, NULL is returned, otherwise ioptr, which will now refer to the new file.
Often the reopened stream is stdin or stdout.


int getc(ioptr)

returns the next character from the stream named by ioptr, which is a pointer to a file such as returned by fopen, or the name stdin. The integer EOF is returned on end-of-file or when an error occurs. The null character is a legal character.


putc(c, ioptr)

Putc writes the character c on the output stream named by ioptr, which is a value returned from fopen or perhaps stdout or stderr. The character is returned as value, but EOF is returned on error.


fclose(ioptr)

The file corresponding to ioptr is closed after any buffers are emptied. A buffer allocated by the IO systemis freed. Fclose is automatic on normal termination of the program.


fflush(ioptr)

Any buffered information on the (output) stream named by ioptr is written out. Output files are normally buffered if and only if they are not directed to the terminal, but stderr is unbuffered unless setbuf is used.


exit(errcode)

Exit terminates the process and returns its argument as status to the parent. This is a special version of theroutine which calls fflush for each output file. To terminate without flushing, use exit.


feof(ioptr)

returns non-zero when end-of-file has occurred on the specified input stream.


ferror(ioptr)

returns non-zero when an error has occurred while reading or writing the named stream. The error indication lasts until the file has been closed.


getchar( )

is identical to `getc(stdin)'.


putchar(c)

is identical to `putc(c, stdout)'.


char *gets(s)

reads characters up to a new-line from the standard input. The new-line character is replaced by a nullcharacter. It is the user's responsibility to make sure that the character array s is large enough. Gets returnsits argument, or null if end-of-file or error occurred.


char *fgets(s, n, ioptr)

reads up to n characters from the stream ioptr into the character pointer s. The read terminates with a new-line character. The new-line character is placed in the buffer followed by a null pointer. The first argument, or a null pointer if error or end-of-file occurred, is returned.


puts(s)

writes the null-terminated string (character array) s on the standard output. A new-line is appended. No value is returned.


fputs(s, ioptr)

writes the null-terminated string (character array) on the stream s. No new-line is appended. No value isreturned.


ungetc(c, ioptr)

The argument character c is pushed back on the input stream named by ioptr. Only one character may bepushed back.


printf(format, a1, . . .)
fprintf(ioptr, format, a1, . . .)
sprintf(s, format, a1, . . .)

Printf writes on the standard output. Fprintf writes on the named output stream. Sprintf puts characters inthe character array (string) named by s. The specifications are as usual.


scanf(format, a1, . . .)
fscanf(ioptr, format, a1, . . .)
sscanf(s, format, a1, . . .)

Scanf reads from the standard input. Fscanf reads from the named input stream. Sscanf reads from thecharacter string supplied as s. The specifications are identical to those of the Portable Library.


fread(ptr, sizeof(*ptr), nitems, ioptr)

writes nitems of data beginning at ptr on file ioptr. It behaves identically to the Portable Library's cread. No advance notification that binary IO is being done is required; when, for portability reasons, it becomes required, it will be done by adding an additional character to the mode-string on the fopen call.


fwrite(ptr, sizeof(*ptr), nitems, ioptr)

Like fread, but in the other direction.


rewind(ioptr)

rewinds the stream named by ioptr. It is not very useful except on input, since a rewound output file is still open only for output.


system(string)
atof(s)
tmpnam(s)
abort(code)
intss( )
cfree(ptr)
wdleng( )

are available with specifications identical to those described for the Portable Library.


char *calloc(n, sizeof(object))

returns null when no space is available. The space is guaranteed to be 0.


ftoa

is not implemented but there are plausible alternatives.


nargs( )

is not implemented.


getw(ioptr)

returns the next word from the input stream named by ioptr. EOF is returned on end-of-file or error, but since this a perfectly good integer feof and ferror should be used.


putw(w, ioptr)

writes the integer w on the named output stream.


setbuf(ioptr, buf)

Setbuf may be used after a stream has been opened but before IO has started. If buf is null, the stream willbe unbuffered. Otherwise the buffer supplied will be used. It is a character array of sufficient size:


char  buf[BUFSIZ];


fileno(ioptr)

returns the integer file descriptor associated with the file.
Several additional routines are available.


fseek(ioptr, offset, ptrname)

The location of the next byte in the stream named by ioptr is adjusted. Offset is a long integer. If ptrname is 0, the offset is measured from the beginning of the file; if ptrname is 1, the offset is measured from thecurrent read or write pointer; if ptrname is 2, the offset is measured from the end of the file. The routine accounts properly for any buffering.


long ftell(iop)

The byte offset, measured from the beginning of the file, associated with the named stream is returned. Any buffering is properly accounted for.


getpw(uid, buf)

The password file is searched for the given integer user ID. If an appropriate line is found, it is copied into the character array buf, and 0 is returned. If no line is found corresponding to the user ID then 1 is returned.


strcat(s1, s2)

S1 and s2 are character pointers. The end (null byte) of the s1 string is found and s2 is copied to s1 starting there. The space pointed to by s1 must be large enough.


strcmp(s1, s2)

The character strings s1 and s2 are compared. The result is positive, zero, or negative a ccording as s1 is greater than, equal to, or less than s2 in ASCII collating sequence.


strcpy(s1, s2)

The null-terminated character string s2 is copied to the location pointed to by s1.


strlen(s)

The number of bytes in s up to a null byte is returned. S is a character pointer.


gcvt(num, ndig, buf)

Num is a floating or double quantity. Ndig significant digits are converted to ASCII and placed into thecharacter array buf. The conversion is in Fortran e or f style, whichever yields the shorter string. In significant trailing zeros are eliminated.