Query: puts
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
puts(3C) Standard C Library Functions puts(3C)NAMEputs, fputs - put a string on a streamSYNOPSIS#include <stdio.h> int puts(const char *s); int fputs(const char *s, FILE *stream);DESCRIPTIONThe puts() function writes the string pointed to by s, followed by a NEWLINE character, to the standard output stream stdout (see Intro(3)). The terminating null byte is not written. The fputs() function writes the null-terminated string pointed to by s to the named output stream. The terminating null byte is not writ- ten. The st_ctime and st_mtime fields of the file will be marked for update between the successful execution of fputs() and the next successful completion of a call to fflush(3C) or fclose(3C) on the same stream or a call to exit(2) or abort(3C).RETURN VALUESOn successful completion, both functions return the number of bytes written; otherwise they return EOF and set errno to indicate the error.ERRORSRefer to fputc(3C).USAGEUnlike puts(), the fputs() function does not write a NEWLINE character at the end of the string.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOexit(2), write(2), Intro(3), abort(3C), fclose(3C), ferror(3C), fflush(3C), fopen(3C), fputc(3C), printf(3C), stdio(3C), attributes(5), standards(5) SunOS 5.11 18 Jun 2003 puts(3C)
Related Man Pages |
---|
putchar(3) - php |
putc(3) - plan9 |
putchar(3) - plan9 |
fputc(3) - xfree86 |
putchar(3) - xfree86 |
Similar Topics in the Unix Linux Community |
---|
Need help in character pointer |